Merge branch 'feature/issue_#2/hyperlinks_in_titles' of https://github.com/sergiotarxz/micro

This commit is contained in:
sergiotarxz 2020-07-28 18:54:49 +02:00
commit 0b38b3c791

View File

@ -2,12 +2,17 @@
<section class="content"> <section class="content">
<?php foreach ($content as $page): ?> <?php foreach ($content as $page): ?>
<article class="page"> <article class="page">
<?php if($page->title()): ?>
<header> <header>
<h2><?php echo $page->title() ?></h2> <?php if ( $page->title() ): ?>
<h2>
<a href="<?php echo htmlentities($page->permalink(), ENT_QUOTES | ENT_HTML401)?>">
<?php
echo htmlentities( $page->title() );
?>
</a>
</h2>
<?php endif; ?>
</header> </header>
<?php endif ?>
<?php if ($page->coverImage()): ?> <?php if ($page->coverImage()): ?>
<img src="<?php echo $page->coverImage() ?>" alt="<?php echo $page->slug() ?>"> <img src="<?php echo $page->coverImage() ?>" alt="<?php echo $page->slug() ?>">
<?php endif ?> <?php endif ?>
@ -15,6 +20,10 @@
<?php echo $page->content() ?> <?php echo $page->content() ?>
<footer> <footer>
<a href="<?php echo htmlentities($page->permalink(), ENT_QUOTES | ENT_HTML401)?>">
<?php echo htmlentities( $L->get('Read this article.') ); ?>
</a>
<br/>
<?php echo $page->date() ?> <?php echo $page->date() ?>
</footer> </footer>
</article> </article>