You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
947 B
HTML
33 lines
947 B
HTML
{% load static %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en" dir="ltr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="{% static 'base.css' %}">
|
|
<title>Mensaviewer | {% block title %}Home{% endblock %}</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
{% block header %}<h1>Header Title</h1>{% endblock %}
|
|
</header>
|
|
<main>
|
|
<nav>
|
|
<a href="{% url 'mensaviewer:flensburg' %}">Flensburg</a>
|
|
<a href="{% url 'mensaviewer:custom' %}">Custom</a>
|
|
<hr>
|
|
<a href="{% url 'mensaviewer:location_list' %}">Locations</a>
|
|
<a href="{% url 'mensaviewer:news_list' %}">News Articles</a>
|
|
<a href="{% url 'mensaviewer:menu_list' %}">Menus</a>
|
|
<a href="{% url 'mensaviewer:comment_list' %}">Comments</a>
|
|
<hr>
|
|
<a href="/admin">Admin</a>
|
|
</nav>
|
|
<div class="content">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|