edit Base.html

This commit is contained in:
itqop 2024-03-17 20:03:21 +03:00
parent bf02255eb3
commit c5602f7f4e
1 changed files with 17 additions and 3 deletions

View File

@ -26,7 +26,7 @@
{# Global stylesheets #} {# Global stylesheets #}
<link rel="stylesheet" type="text/css" href="{% static 'css/rumine.css' %}"> <link rel="stylesheet" type="text/css" href="{% static 'css/rumine.css' %}">
<link rel="stylesheet" type="text/css" href="{% static 'css/styles.old.css' %}"> <link rel="stylesheet" type="text/css" href="{% static 'css/styles.old.css' %}">
<link rel="shortcut icon" href="{% static 'images/favicon.ico' %}" type="image/x-icon"/> <link rel="shortcut icon" href="{% static 'images/favicon.ico' %}" type="image/x-icon"/>
{% block extra_css %} {% block extra_css %}
{# Override this in templates to add extra stylesheets #} {# Override this in templates to add extra stylesheets #}
@ -38,13 +38,14 @@
<header> <header>
<div class="icms-header__middle"> <div class="icms-header__middle">
<div class="container-fluid d-flex justify-content-between align-items-center flex-nowrap"> <div class="container-fluid d-flex justify-content-between align-items-center flex-nowrap">
<div class=" mx-auto"> <div class=" mx-auto">
<span class="navbar-brand mr-3 flex-shrink-0"> <a class="navbar-brand mr-3 flex-shrink-0" href="/">
<img src="{% static 'images/small_logo.png' %}" class="d-sm-none" alt="RuMine"> <img src="{% static 'images/small_logo.png' %}" class="d-sm-none" alt="RuMine">
<img src="{% static 'images/big_logo.png' %}" class="d-none d-sm-block" alt="RuMine"> <img src="{% static 'images/big_logo.png' %}" class="d-none d-sm-block" alt="RuMine">
</span> </a>
</div> </div>
</div> </div>
</div> </div>
@ -74,6 +75,19 @@
{% block content %} {% block content %}
{% endblock %} {% endblock %}
<footer class="icms-footer__bottom">
<div class="container py-2">
<div class="row no-gutters align-items-center flex-wrap">
<div class="col-md mt-2 mt-sm-0 mb-1 mb-sm-0">
RuMine © 2015-2024
</div>
<div class="col-md-auto">
Сделано с любовью ❤️
</div>
</div>
</div>
</footer>
{# Global javascript #} {# Global javascript #}
<script type="text/javascript" src="{% static 'js/rumine.js' %}"></script> <script type="text/javascript" src="{% static 'js/rumine.js' %}"></script>