Files
dog_training/templates/layouts/layout_dog.html

39 lines
2.0 KiB
HTML

<!DOCTYPE html>
<html lang="en-GB">
<head>
{% include 'layouts/_shared_head.html' %}
{% block page_head %}{% endblock %}
</head>
<body data-page="{{ model.hash_page_current }}">
<div class="topnav">
<div class="{{ model.FLAG_CONTAINER }} {{ model.FLAG_LOGO }}">
<img class="{{ model.FLAG_LOGO }}" src="{{ url_for('static', filename='images/fetch-metrics-logo-and-company-name-horizontal-1-link-visited-LQ.webp') }}" alt="Fetch Metrics logo" aria-label="Fetch Metrics logo" tabindex="0"> {# 'images/fetch-metrics-logo-and-company-name-radial-0.5-link-visited-LQ.webp', 'images/Wisp_LQ.webp' #}
</div>
<div class="{{ model.FLAG_CONTAINER }} company-name">
<h1 class="company-name">{{ model.title }}</h1> {# {{ model.NAME_COMPANY_SHORT }} - #}
</div>
</div>
{% include 'layouts/_shared_header.html' %}
<!-- Body -->
<div id="{{ model.ID_PAGE_BODY }}">
{% block page_body %}{% endblock %}
</div>
<!-- Footer -->
<div class="footer">
<h4>Copyright &copy; {{ model.NAME_COMPANY }}. <a href="{{ url_for('routes_legal.license') }}" alt="License" aria-label="License">All rights reserved.</a> Company number 13587499</h4>
{# <h5>Company number 13587499</h5> #}
<div class="{{ model.FLAG_CONTAINER }} {{ model.FLAG_ROW }}">
<div class="{{ model.FLAG_CONTAINER }} {{ model.FLAG_COLUMN }}"><p><a href="{{ url_for('routes_legal.accessibility_statement') }}" alt="Accessibility statement" aria-label="Accessibility statement">Accessibility statement</a></p></div>
<div class="{{ model.FLAG_CONTAINER }} {{ model.FLAG_COLUMN }}"><p><a href="{{ url_for('routes_legal.privacy_policy') }}" alt="Privacy notice" aria-label="Privacy notice">Privacy notice</a></p></div>
</div>
</div>
{% include 'layouts/_shared_scripts.html' %}
{% include 'layouts/_shared_dog_scripts.html' %}
<script src="{{ url_for('static', filename='dist/js/main.bundle.js') }}"></script>
</body>
</html>