30 lines
970 B
HTML
30 lines
970 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Доставка еды</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Unbounded:wght@500;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
|
|
<script defer src="{{ url_for('static', filename='js/app.js') }}"></script>
|
|
</head>
|
|
<body>
|
|
<div class="layout">
|
|
<div class="nav">
|
|
<p class="brand">Like Delivery</p>
|
|
<div class="nav-links">
|
|
<a href="/">Меню</a>
|
|
<a href="/cart">Корзина</a>
|
|
<a href="/register">Регистрация</a>
|
|
<a href="/admin">Админ</a>
|
|
</div>
|
|
</div>
|
|
<main class="content">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|