Add post meta back into post.hbs
This commit is contained in:
parent
41d4e2525b
commit
35adcc0fd3
2 changed files with 29 additions and 6 deletions
|
@ -244,10 +244,6 @@ a:hover {
|
||||||
color: #111;
|
color: #111;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-template .post-title {
|
|
||||||
margin-bottom: 3.4rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
p, ul, ol, dl {
|
p, ul, ol, dl {
|
||||||
-webkit-font-feature-settings: 'liga' 1, 'onum' 1, 'kern' 1;
|
-webkit-font-feature-settings: 'liga' 1, 'onum' 1, 'kern' 1;
|
||||||
-moz-font-feature-settings: 'liga' 1, 'onum' 1, 'kern' 1;
|
-moz-font-feature-settings: 'liga' 1, 'onum' 1, 'kern' 1;
|
||||||
|
@ -773,6 +769,24 @@ body:not(.post-template) .post-title {
|
||||||
5. Single Post - When you click on an individual post
|
5. Single Post - When you click on an individual post
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
|
.post-template .post-header {
|
||||||
|
margin-bottom: 3.4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.post-template .post-title {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.post-template .post-meta {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.post-template .post-date {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
/* Stop .full-img from creating horizontal scroll - slight hack due to
|
/* Stop .full-img from creating horizontal scroll - slight hack due to
|
||||||
imperfections with browser width % calculations and rounding */
|
imperfections with browser width % calculations and rounding */
|
||||||
.post-template .content {
|
.post-template .content {
|
||||||
|
@ -1522,10 +1536,14 @@ body:not(.post-template) .post-title {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-template .post-title {
|
.post-template .post-header {
|
||||||
margin-bottom: 2rem;
|
margin-bottom: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.post-template .post-date {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
margin: 1.6em 0;
|
margin: 1.6em 0;
|
||||||
}
|
}
|
||||||
|
|
5
post.hbs
5
post.hbs
|
@ -14,7 +14,12 @@
|
||||||
{{! 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>
|
||||||
|
<section class="post-meta">
|
||||||
|
<time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time> {{tags prefix=" on "}}
|
||||||
|
</section>
|
||||||
|
</header>
|
||||||
|
|
||||||
<section class="post-content">
|
<section class="post-content">
|
||||||
{{content}}
|
{{content}}
|
||||||
|
|
Loading…
Reference in a new issue