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

18 lines
658 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% 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 %}