summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: ba2a57e4bf9a12848897e2d3f6c1518e139f4de6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="utf-8"/>
		<title>silas</title>
		<link rel="stylesheet" href="/style.css"/>
		{% block rss %}
		  <link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path="rss.xml", trailing_slash=false) }}">
		{% endblock %}
	</head>
	<body>
		<section class="section">
			<div class="container">
				{% block  content %} {% endblock %}
			</div>
		</section>
	</body>
</html>