Adding hyperlinks to blog post titles, if there is no title, page permalink is used as a title.

Issue #2
This commit is contained in:
sergiotarxz 2020-07-21 01:13:56 +02:00
parent 2ff5327544
commit f096f2f6e6
1 changed files with 7 additions and 4 deletions

View File

@ -2,12 +2,15 @@
<section class="content">
<?php foreach ($content as $page): ?>
<article class="page">
<?php if($page->title()): ?>
<header>
<h2><?php echo $page->title() ?></h2>
<h2>
<a href="<?php echo htmlentities($page->permalink(), ENT_QUOTES | ENT_HTML401)?>">
<?php
echo htmlentities($page->title() ? $page->title() : $page->permalink() );
?>
</a>
</h2>
</header>
<?php endif ?>
<?php if ($page->coverImage()): ?>
<img src="<?php echo $page->coverImage() ?>" alt="<?php echo $page->slug() ?>">
<?php endif ?>