2024-06-10 18:22:44 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>{% block title %}Welcome!{% endblock %}</title>
|
2024-06-22 20:20:51 +00:00
|
|
|
<link rel="icon" type="image/png" href="/static/img/slice-of-pizza.png" />
|
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>
|
2024-06-15 16:41:41 +00:00
|
|
|
<a
|
|
|
|
href="https://hannover.ccc.de/gitlab/lubiana/futtern/issues/new"
|
|
|
|
target="_blank"
|
|
|
|
>Create Issue</a>
|
2024-06-14 15:41:00 +00:00
|
|
|
</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
|
|
|
|