summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: c74aceb35fe0e79a56627b380fcae40ee8843f53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="utf-8"/>
		<title>silas</title>
		<link rel="stylesheet" href="/style.css"/>
	</head>
	<body>
		<section class="section">
			<div class="container">
				{% block  content %} {% endblock %}
			</div>
		</section>
	</body>
</html>