njpma/app/templates/base.html

33 lines
1 KiB
HTML
Raw Normal View History

2021-09-28 13:10:22 +00:00
<!doctype html>{% load sass_tags static %}
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<title>
{% block title %}
Phantas.ma/polis 2021 Asian Art Biennial
{% endblock title %}
</title>
<link href="{% sass_src 'css/style.scss' %}" rel="stylesheet" type="text/css">
{% block head %}{% endblock head %}
</head>
<body>
<h1>
phtantasmapolis: Looking Back to the Future
<br>
未竟之城:回顧未來
</h1>
<nav>
<a href="{% url 'films'%}">films - 影片</a> |
<a href="{% url 'edits' %}">edits - 編輯</a> |
<a href="{% url 'tv' %}">tv - 頻道</a> |
<a href="{% url 'essays' %}">essays - 專文</a> |
<a href="{% url 'about' %}">about - 關於</a>
</nav>
<main>
{% block main %}{% endblock main %}
</main>
{% block end %}{% endblock end %}
</body>
</html>