Fixed bottom margin on static page post-title h1
Static pages were previously missing a margin on the bottom of the post-title h1. By adding <header> with a post-header class around the h1, we gain the exact same bottom margin as seen on post (non-static) pages.
This commit is contained in:
parent
09d827249f
commit
df09b7c375
2
page.hbs
2
page.hbs
|
@ -14,7 +14,9 @@
|
||||||
{{! Everything inside the #post tags pulls data from the post }}
|
{{! Everything inside the #post tags pulls data from the post }}
|
||||||
{{#post}}
|
{{#post}}
|
||||||
|
|
||||||
|
<header class="post-header">
|
||||||
<h1 class="post-title">{{title}}</h1>
|
<h1 class="post-title">{{title}}</h1>
|
||||||
|
</header>
|
||||||
|
|
||||||
<section class="post-content">
|
<section class="post-content">
|
||||||
{{content}}
|
{{content}}
|
||||||
|
|
Loading…
Reference in New Issue