futtern/templates/base.html.twig

23 lines
799 B
Twig
Raw Normal View History

2024-06-10 18:22:44 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text><text y=%221.3em%22 x=%220.2em%22 font-size=%2276%22 fill=%22%23fff%22>sf</text></svg>">
2024-06-14 15:41:00 +00:00
<link rel="stylesheet" href="/static/css/simple.min.css">
<script src="/static/js/htmx.min.js"></script>
2024-06-10 18:22:44 +00:00
</head>
<body>
2024-06-14 15:41:00 +00:00
<header>
<nav>
<a href="{{ path('app_food_order_index') }}">Orders</a>
<a href="{{ path('app_food_vendor_index') }}">Vendors</a>
</nav>
</header>
<main>
2024-06-10 18:22:44 +00:00
{% block body %}{% endblock %}
2024-06-14 15:41:00 +00:00
</main>
2024-06-10 18:22:44 +00:00
</html>
2024-06-14 15:41:00 +00:00