aboutsummaryrefslogtreecommitdiff
path: root/src/templates/partials/master.html
blob: cebdd61f4a681a7b3c85fe3f7fb9bb6786ea713e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html class="no-js" lang="en">
	<head>
		<link rel="icon" href="/static/favicon.ico">
		<link rel="stylesheet" href="{{ $cssRoute }}">
		<meta charset="utf-8">
		<meta name="viewport" content="width=device-width, initial-scale=1">

		<title>short.adyxax.org</title>
	</head>
	<body>
		<header>
			{% importnwt "templates/partials/nav.html" %}
		</header>
		<main id="main">
			<hr>
			{% block content %}{% endblock %}
		</main>
		{% importnwt "templates/partials/footer.html" %}
	</body>
</html>