This repository has been archived on 2024-01-13. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
arka-mvp/templates/index.html
T
2022-09-19 22:33:32 +03:00

18 lines
658 B
HTML

{% extends 'base.html' %}
{% block title %} Арка | Главная {% endblock %}
{% load static %}
{% block content %}
<h1> Главная страница </h1>
<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>
<a href="{% url 'user-agreement' %}">Пользовательское соглашение</a>
{% endblock %}