🐛 (blogarticle) Show headline as h3 on homepage
All checks were successful
Deploy / deploy (push) Successful in 5s
All checks were successful
Deploy / deploy (push) Successful in 5s
This commit is contained in:
parent
cd1330bcbe
commit
88f8c6a9a6
3 changed files with 7 additions and 2 deletions
|
@ -1,5 +1,10 @@
|
||||||
<article>
|
<article>
|
||||||
|
<?php if ($main): ?>
|
||||||
<h2><a href="<?= $article->url() ?>"><?= $article->title() ?></a></h2>
|
<h2><a href="<?= $article->url() ?>"><?= $article->title() ?></a></h2>
|
||||||
|
<?php else: ?>
|
||||||
|
<h3><a href="<?= $article->url() ?>"><?= $article->title() ?></a></h3>
|
||||||
|
<?php endif ?>
|
||||||
|
|
||||||
<p id="date"><?= $article->date()->toDate('Y-m-d') ?></p>
|
<p id="date"><?= $article->date()->toDate('Y-m-d') ?></p>
|
||||||
<p>
|
<p>
|
||||||
<div class="tagories">
|
<div class="tagories">
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<?= $page->text()->kirbytext() ?>
|
<?= $page->text()->kirbytext() ?>
|
||||||
|
|
||||||
<?php foreach($articles as $article): ?>
|
<?php foreach($articles as $article): ?>
|
||||||
<?php snippet('article', ['article' => $article]) ?>
|
<?php snippet('article', ['article' => $article, 'main' => true]) ?>
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
|
|
||||||
<?php if ($articles->pagination()->hasPages()): ?>
|
<?php if ($articles->pagination()->hasPages()): ?>
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
<h2>Latest Posts</h2>
|
<h2>Latest Posts</h2>
|
||||||
|
|
||||||
<?php foreach(page('blog')->children()->listed()->flip()->limit(3) as $article): ?>
|
<?php foreach(page('blog')->children()->listed()->flip()->limit(3) as $article): ?>
|
||||||
<?php snippet('article', ['article' => $article]) ?>
|
<?php snippet('article', ['article' => $article, 'main' => false]) ?>
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
|
|
||||||
<a class="btn" href="<?= page('blog')->url() ?>">Read more posts</a>
|
<a class="btn" href="<?= page('blog')->url() ?>">Read more posts</a>
|
||||||
|
|
Loading…
Reference in a new issue