/
muhxa
/
into-practice
Обзор
Документация
Войти
/
muhxa
/
into-practice
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
base.html
45 строк
2 KB
muhxa
Create: base.html
06 июл 2026, 20:32
Верифицирован
06 июл 2026, 20:32
b74b619
Код
Авторство
О чём код?
<!doctype html> <html lang="ru"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>{% block title %}FreshAI{% endblock %}</title> <link rel="preconnect" href="https://fonts.googleapis.com"> <link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap" rel="stylesheet"> <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> </head> <body> <div class="layout"> <div class="topbar"> <a class="brand" href="/"> <img src="{{ url_for('static', filename='logo.jpeg') }}" alt="FreshAI"> <span> <span class="brand-name">FreshAI</span> <span class="brand-tag">умный кабинет покупателя</span> </span> </a> <nav class="mainnav"> <a href="/" class="{{ 'active' if request.path == '/' else '' }}">Главная</a> <a href="/history" class="{{ 'active' if request.path == '/history' else '' }}">Мои покупки</a> <a href="/insights" class="{{ 'active' if request.path == '/insights' else '' }}">Аналитика</a> </nav> {% if user_id %} <span class="session-pill">Клиент #{{ user_id }}</span> {% endif %} </div> {% if error %} <div class="card"><p class="error">{{ error }}</p></div> {% endif %} {% block content %}{% endblock %} <footer class="mainfooter"> FreshAI · учебный проект на базе Instacart · Loginom + Flask + GigaChat </footer> </div> </body> </html>