aboutsummaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: 7f035afbcaf3424cd2cee5da418c44917f7ae263 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang='{{ page.lang }}'>
<head>
	{% include head.html %}
	{% include title.html %}
	{% include opengraph.html %}
</head>
<body>
	<div class='centeredPage'>
		<div class='titleWrapper'>
			<h1>{{ page.title }}</h1>
			{% if page.subtitle %}<p class='subtile'>{{ page.subtitle }}</p>{% endif %}
			{% if page.tags %}{% include tags.html tags=page.tags %}{% endif %}
		</div>
		<div class='navAreaWrapper'>
			<div class='sticky'>
				{% include navbar.html page="post" %}
				{% include toc.html content=content %}
			</div>
		</div>
		<!-- <MobileNavbar /> -->
		<div class='contentWrapper'>
			{{ content }}
		</div>
	</div>
</body>
</html>