попытались сделать footer
This commit is contained in:
parent
2f9d133b19
commit
63f97cc6e7
@ -0,0 +1,13 @@
|
||||
.warning_text {
|
||||
width: 40vw;
|
||||
}
|
||||
.content_footer_block {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.footer {
|
||||
margin-top: 5vw;
|
||||
}
|
||||
|
||||
@ -8,6 +8,7 @@
|
||||
margin-left: 30%;
|
||||
margin-right: 30%;
|
||||
margin-top: 10vw;
|
||||
margin-bottom: 6vw;
|
||||
border-radius: 3vw;
|
||||
background-color: #eaeaea;
|
||||
padding-top: 2vw;
|
||||
|
||||
@ -7,7 +7,6 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{% block title %}{% endblock title %}</title>
|
||||
<link href="{% static 'css/bootstrap/bootstrap.min.css' %}" rel="stylesheet">
|
||||
<!--<link rel="stylesheet" href="{% static 'css/footer.css' %}"/>-->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="{% static 'img/apple-touch-icon.png' %}">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="{% static 'img/favicon-32x32.png' %}">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="{% static 'img/favicon-16x16.png' %}">
|
||||
@ -24,7 +23,7 @@
|
||||
<main>
|
||||
{% block content %} Контент не подвезлм :( {% endblock content %}
|
||||
</main>
|
||||
{% include 'includes/footer.html' %}
|
||||
<!--{% include 'includes/footer.html' %}-->
|
||||
<script defer src="{% static 'js/bootstrap/bootstrap.min.js' %}"></script>
|
||||
</body>
|
||||
</html>
|
||||
@ -0,0 +1,11 @@
|
||||
{% load static %}
|
||||
<link href="{% static 'css/includes/footer.css' %}" rel="stylesheet">
|
||||
<footer class="footer bg-dark text-light fixed-bottom">
|
||||
<div class="content_footer_block">
|
||||
<img class="header_icon" src="{% static 'img/logo.jpg' %}">
|
||||
<p class="mt-3">CineSync ©️</p>
|
||||
<p class="warning_text">*Вся информация на сайте, включая названия/описания/изображения фильмов, ФИО актеров
|
||||
и режиссеров
|
||||
сгенерированы нейросетью и не имеют отношения к реальности</p>
|
||||
</div>
|
||||
</footer>
|
||||
@ -7,10 +7,12 @@
|
||||
{% block content %}
|
||||
<link href="{% static 'css/style.css' %}" rel="stylesheet">
|
||||
<link href="{% static 'css/tickets/my_orders.css' %}" rel="stylesheet">
|
||||
<h1 class="header_title">Мои заказы</h1>
|
||||
<div class="my_orders_block">
|
||||
{% for order in my_orders %}
|
||||
{% include "includes/my_order_card.html" %}
|
||||
{% endfor %}
|
||||
<div class="container">
|
||||
<h1 class="header_title">Мои заказы</h1>
|
||||
<div class="my_orders_block">
|
||||
{% for order in my_orders %}
|
||||
{% include "includes/my_order_card.html" %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
@ -9,4 +9,4 @@
|
||||
<h1>Смена пароля</h1>
|
||||
{% include "includes/form.html" with form=form %}
|
||||
</div>
|
||||
{% endblock %}
|
||||
{% endblock %}
|
||||
Loading…
x
Reference in New Issue
Block a user