1
0
Fork 0

[SITE] blog: add meta (date, tags) to blogarticle as well

This commit is contained in:
Jannik Beyerstedt 2016-04-18 00:26:23 +02:00
parent 2f2fa568ef
commit 4b7c4a5579
4 changed files with 23 additions and 4 deletions

View file

@ -10,7 +10,7 @@
], ],
"sourceComments": false, "sourceComments": false,
"outputStyle": "nested" "outputStyle": "nested"
}, }
}, },
"assets/scss/templates/*": { "assets/scss/templates/*": {
"sass.enabled": true, "sass.enabled": true,
@ -21,7 +21,7 @@
], ],
"sourceComments": false, "sourceComments": false,
"outputStyle": "nested" "outputStyle": "nested"
}, }
}, },
"assets/vendors/bootstrap/scss/*": { "assets/vendors/bootstrap/scss/*": {
"sass.enabled": true, "sass.enabled": true,

View file

@ -62,9 +62,20 @@ main.blog {
article.blogarticle { article.blogarticle {
margin-top: 30px; margin-top: 30px;
padding-bottom: 60px; h1 {
margin-bottom: 0;
}
div.meta.title {
margin-bottom: 20px;
}
padding-bottom: 15px;
border-bottom: 2px solid lighten($blog_color_meta, 10%); border-bottom: 2px solid lighten($blog_color_meta, 10%);
margin-bottom: 50px; margin-bottom: 50px;
div.meta.bottom {
margin-top: 45px;
}
} }
div.teasers { div.teasers {

View file

@ -5,7 +5,7 @@ pages:
num: date num: date
sort: flip sort: flip
files: true files: false
fields: fields:
title: title:

View file

@ -32,8 +32,16 @@ snippet('base/cont-header');
<article class="blogarticle"> <article class="blogarticle">
<h1><?php echo $page->title()->html() ?></h1> <h1><?php echo $page->title()->html() ?></h1>
<div class="meta title">
<time datetime="<?php echo $page->date('Y-m-d') ?>"><?php echo $page->date('d. M. Y') ?></time>
</div>
<?php echo $page->text()->kirbytext(); ?> <?php echo $page->text()->kirbytext(); ?>
<div class="meta bottom">
<time datetime="<?php echo $page->date('Y-m-d') ?>"><?php echo $page->date('d. M. Y') ?></time>
<?php echo tags($base_url, $page); ?>
</div>
</article> </article>
<?php if($page->hasPrevVisible() || $page->hasNextVisible()): ?> <?php if($page->hasPrevVisible() || $page->hasNextVisible()): ?>