diff options
| author | lonkaars <loek@pipeframe.xyz> | 2024-04-13 13:50:54 +0200 |
|---|---|---|
| committer | lonkaars <loek@pipeframe.xyz> | 2024-04-13 13:50:54 +0200 |
| commit | dee0b16c1cdf18d205ffcb738eda0e9049396fd0 (patch) | |
| tree | b905daa11c075ef6a112b4ac65aec759ea0566a3 /_layouts/post.html | |
| parent | ce37824c5260dd370c61cf174ea80ca7deeb1058 (diff) | |
fix more stuff
Diffstat (limited to '_layouts/post.html')
| -rw-r--r-- | _layouts/post.html | 14 |
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> |