-
-
Save nishad/ee552b84731122f12667 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
snippet('header'); | |
$tag = urldecode(param('tag')); | |
if(param('tag')) | |
$articles=$pages->visible()->filterBy('tags',$tag,',')->sortBy('date')->flip(); | |
?> | |
<main class="main"> | |
<section> | |
<h1><?php echo $page->title() . ' ' . $tag ?></h1> | |
<?php foreach($articles as $p): ?> | |
<article> | |
<h1><a href="<?php echo $p->url()?>"><?php echo $p->title() ?></a></h1> | |
</article> | |
<?php endforeach?> | |
</section> | |
</main> | |
<?php snippet('footer')?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment