Files
2020-dq/dicquo/templates/blocks/header_nav.html
erjemin 5bfd50efd5
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m27s
mod: Переработаны дизайн и компоновка. Минималистичный код.
2026-02-22 01:23:46 +03:00

15 lines
1.1 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% load static %}{# ШАПКА #}<header>
<a href="/" id="logo">
<img src='{% static "svgs/dq-logo.svg" %}' alt="Dictum & Quotes" title="Dictum & Quotes"/>
</a>
<nav>
<span id="stats-menu">
{# Манифест проекта #}<p>
DicQuo&nbsp;— это коллекция отобранных вручную цитат, оформленных с&nbsp;уважением к&nbsp;типографике.<br/>
Место для&nbsp;вдумчивого&nbsp;чтения.
</p>
{# МЕНЮ #}{% if ticks %}<i class="stats-icon icon-time" title="Время генерации"></i>{{ ticks|floatformat:3|default:"1,023" }} ms{% endif %}{% if DQ %} <b>|</b> <i class="stats-icon icon-views" title="Просмотры"></i> {{ DQ.iViewCounter }}{% endif %} <a href="/add_quote/" title="Добавить цитату"></a> &nbsp;
</span>
{# БУРГЕР #}<a href="#" onclick="var m=document.getElementById('stats-menu'); m.style.display = (m.style.display === 'none' ? 'inline-block' : 'none'); return false;" title="О проекте"></a>
</nav>
</header>