blob: 4597623a86225f8cd0d6e9fac9533536cee00fd2 (
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" %}
{% toc %}
</div>
</div>
<!-- <MobileNavbar /> -->
<div class='contentWrapper'>
{{ content }}
</div>
</div>
</body>
</html>
|