Last active
August 29, 2015 14:08
-
-
Save texnixe/390996ca722fbf49c63d to your computer and use it in GitHub Desktop.
tag-results.php
This file contains 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