Initial commit

This commit is contained in:
2022-09-15 22:25:55 +03:00
commit 7582330b1b
70 changed files with 1094 additions and 0 deletions

21
templates/index.html Normal file
View File

@@ -0,0 +1,21 @@
{% extends 'base.html' %}
{% block title %} Арка | Главная {% endblock %}
{% load static %}
{% block content %}
<h1> Главная страница </h1>
Правила<br>
1) не скамить<br>
2) скамим только мы<br>
3) {криво,косо,жопо}руких не принимаем<br>
<div style="margin-top: 50px">
<h3>Ну а пока тут нет нужного контента можно послушать музычку</h3>
<audio controls preload="none">
<source src="{% static 'm.mp3' %}" type="audio/mp3">
Your browser does not support the audio element.
</audio>
</div>
{% endblock %}