aboutsummaryrefslogtreecommitdiff
path: root/assets/templates/base.html
blob: 1f2d8dc85dd2082c9828dea581a480b3d3a6472b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<meta content="width=device-width, initial-scale=1" name="viewport">
		<title>
			{% block title %}
			A photo gallery by Yaroslav de la Peña Smirnov
			{% endblock %}
		</title>
		<link rel="stylesheet" href="{{ index }}/css/gallery.css">
	</head>
	<body>
		{% block content %}
		{% endblock %}
	</body>
</html>