rumine-web/rumine/templates/base.html

117 lines
5.1 KiB
HTML
Raw Normal View History

2024-03-13 07:49:06 +01:00
{% load static wagtailcore_tags wagtailuserbar %}
<!DOCTYPE html>
2024-03-17 17:48:37 +01:00
<html lang="ru">
2024-03-13 07:49:06 +01:00
<head>
<meta charset="utf-8" />
<title>
{% block title %}
{% if page.seo_title %}{{ page.seo_title }}{% else %}{{ page.title }}{% endif %}
{% endblock %}
{% block title_suffix %}
{% wagtail_site as current_site %}
{% if current_site and current_site.site_name %}- {{ current_site.site_name }}{% endif %}
{% endblock %}
</title>
{% if page.search_description %}
<meta name="description" content="{{ page.search_description }}" />
{% endif %}
<meta name="viewport" content="width=device-width, initial-scale=1" />
{# Force all links in the live preview panel to be opened in a new tab #}
{% if request.in_preview_panel %}
<base target="_blank">
{% endif %}
{# Global stylesheets #}
2024-03-17 18:18:28 +01:00
<link rel="stylesheet" type="text/css" href="{% static 'css/template.css' %}">
2024-03-17 17:56:51 +01:00
<link rel="stylesheet" type="text/css" href="{% static 'css/styles.old.css' %}">
2024-03-17 18:03:21 +01:00
2024-03-17 17:48:37 +01:00
<link rel="shortcut icon" href="{% static 'images/favicon.ico' %}" type="image/x-icon"/>
2024-03-13 07:49:06 +01:00
{% block extra_css %}
{# Override this in templates to add extra stylesheets #}
{% endblock %}
</head>
2024-03-17 18:22:45 +01:00
<body class="{% block body_class %}{% endblock %}">
2024-03-13 07:49:06 +01:00
{% wagtailuserbar %}
2024-03-17 18:22:45 +01:00
<div class="wrapper">
<header>
2024-03-17 18:03:21 +01:00
2024-03-17 18:22:45 +01:00
<div class="icms-header__middle">
<div class="container-fluid d-flex justify-content-between align-items-center flex-nowrap">
<div class=" mx-auto">
<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/big_logo.png' %}" class="d-none d-sm-block" alt="RuMine">
</a>
</div>
2024-03-17 17:48:37 +01:00
</div>
</div>
2024-03-17 18:22:45 +01:00
<div class="icms-header__bottom border-bottom icms-navbar">
<div class="container">
<nav class="navbar p-0 navbar-expand-lg navbar-light">
<span class="navbar-brand icms-navbar-brand__show_on_hide"> RuMine </span>
<button class="navbar-toggler" type="button" aria-label="Меню" data-toggle="collapse" data-target="#target-main">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="target-main">
<ul class="navbar-nav justify-content-center w-100 icms-menu-hovered mx-lg-n2 menu-main">
2024-03-17 21:02:07 +01:00
{% for page in page.get_children %}
2024-03-17 18:22:45 +01:00
<li class="nav-item">
<a class="nav-link text-nowrap" href="{{ page.url }}" target="_self">
2024-03-17 21:31:17 +01:00
{{ page.title|safe }}
2024-03-17 18:22:45 +01:00
</a>
</li>
{% endfor %}
</ul>
</div>
</nav>
</div>
2024-03-17 17:48:37 +01:00
</div>
2024-03-17 18:22:45 +01:00
</header>
2024-03-17 18:28:28 +01:00
<div class="content">
2024-03-17 19:35:28 +01:00
{% block content_full %}
{% endblock %}
2024-03-17 18:37:15 +01:00
<section class="container">
{% block content %}
{% endblock %}
</section>
2024-03-17 18:28:28 +01:00
</div>
2024-03-13 07:49:06 +01:00
2024-03-17 18:22:45 +01:00
<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>
2024-03-17 18:03:21 +01:00
</div>
</div>
2024-03-17 18:22:45 +01:00
</footer>
</div>
2024-03-17 18:37:15 +01:00
2024-03-17 18:09:22 +01:00
<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>
2024-03-13 07:49:06 +01:00
{# Global javascript #}
<script type="text/javascript" src="{% static 'js/rumine.js' %}"></script>
2024-03-17 20:48:53 +01:00
<script type="text/javascript" src="{% static 'js/scripts.js' %}"></script>
2024-03-13 07:49:06 +01:00
{% block extra_js %}
{# Override this in templates to add extra javascript #}
{% endblock %}
</body>
</html>