aboutsummaryrefslogtreecommitdiff
path: root/_layouts/post.html
diff options
context:
space:
mode:
Diffstat (limited to '_layouts/post.html')
-rw-r--r--_layouts/post.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index 485f560..0b306b1 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -6,20 +6,20 @@
{% include opengraph.html %}
</head>
<body>
- <div className='centeredPage'>
- <div className='titleWrapper'>
+ <div class='centeredPage'>
+ <div class='titleWrapper'>
<h1>{{ page.title }}</h1>
- {% if page.subtitle %}<p className='subtile'>{{ page.subtitle }}</p>{% endif %}
+ {% if page.subtitle %}<p class='subtile'>{{ page.subtitle }}</p>{% endif %}
{% if page.tags %}{% include tags.html tags=page.tags %}{% endif %}
</div>
- <div className='navAreaWrapper'>
- <div className='sticky'>
- <!-- <Navbar /> -->
+ <div class='navAreaWrapper'>
+ <div class='sticky'>
+ {% include navbar.html page="post" %}
<!-- <Chapters chapters={props.meta.chapters} /> -->
</div>
</div>
<!-- <MobileNavbar /> -->
- <div className='contentWrapper'>
+ <div class='contentWrapper'>
{{ content }}
</div>
</div>