Fix footer
This commit is contained in:
parent
c5602f7f4e
commit
8e61411166
|
@ -0,0 +1,13 @@
|
|||
html, body {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.wrapper {
|
||||
min-height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.content {
|
||||
flex: 1;
|
||||
}
|
|
@ -33,7 +33,7 @@
|
|||
{% endblock %}
|
||||
</head>
|
||||
|
||||
<body class="{% block body_class %}{% endblock %}">
|
||||
<body class="{% block body_class %}{% endblock %} wrapper">
|
||||
{% wagtailuserbar %}
|
||||
|
||||
|
||||
|
@ -87,7 +87,16 @@
|
|||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="alert text-center py-3 border-0 rounded-0 m-0 position-fixed fixed-bottom icms-cookiealert" id="icms-cookiealert">
|
||||
<div class="container">
|
||||
Используя этот сайт, вы соглашаетесь с тем, что мы используем файлы cookie.
|
||||
<button type="button" class="ml-2 btn btn-primary btn-sm acceptcookies">
|
||||
Согласен
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{# Global javascript #}
|
||||
<script type="text/javascript" src="{% static 'js/rumine.js' %}"></script>
|
||||
|
||||
|
|
Loading…
Reference in New Issue