Skip to content

Instantly share code, notes, and snippets.

@mrkurt
Created March 27, 2009 19:29
Show Gist options
  • Save mrkurt/86839 to your computer and use it in GitHub Desktop.
Save mrkurt/86839 to your computer and use it in GitHub Desktop.
<? $render->open_layout('standard'); ?>
<? $GLOBALS['category'] = $category; ?>
<h1><?= $category->name ?></h1>
<? if($category->archives){ ?>
<h4>Archives:</h4>
<ul>
<? foreach($category->archives->load() as $archive){ ?>
<li><a href="<?= $archive->url ?>"><?= $render->title($archive) ?></a></li>
<? } ?>
</ul>
<? } ?>
<? if($category->entries){ ?>
<h4>Entries:</h4>
<? $render->collection($category->entries, 'listing') ?>
<? } ?>
<? $render->close_layout(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment