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:
Jakob Wells 2014-10-29 09:24:31 -07:00
parent 09d827249f
commit df09b7c375
1 changed files with 3 additions and 1 deletions

View File

@ -14,7 +14,9 @@
{{! Everything inside the #post tags pulls data from the post }}
{{#post}}
<h1 class="post-title">{{title}}</h1>
<header class="post-header">
<h1 class="post-title">{{title}}</h1>
</header>
<section class="post-content">
{{content}}