blob: 485f560f12789408d79df1dcd2c91352397ad8e8 (
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 className='centeredPage'>
<div className='titleWrapper'>
<h1>{{ page.title }}</h1>
{% if page.subtitle %}<p className='subtile'>{{ page.subtitle }}</p>{% endif %}
{% if page.tags %}{% include tags.html tags=page.tags %}{% endif %}
</div>
<div className='navAreaWrapper'>
<div className='sticky'>
<!-- <Navbar /> -->
<!-- <Chapters chapters={props.meta.chapters} /> -->
</div>
</div>
<!-- <MobileNavbar /> -->
<div className='contentWrapper'>
{{ content }}
</div>
</div>
</body>
</html>
|