Skip to content

Instantly share code, notes, and snippets.

@texnixe
Last active August 29, 2015 14:08
Show Gist options
  • Save texnixe/390996ca722fbf49c63d to your computer and use it in GitHub Desktop.
Save texnixe/390996ca722fbf49c63d to your computer and use it in GitHub Desktop.
tag-results.php
<?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