Skip to content

Instantly share code, notes, and snippets.

@mrkurt
Created March 27, 2009 00:40
Show Gist options
  • Save mrkurt/86467 to your computer and use it in GitHub Desktop.
Save mrkurt/86467 to your computer and use it in GitHub Desktop.
<h1><?= $category->name ?></h1>
<? if($category->archives){ ?>
<h4>Archives:</h4>
<ul>
<? foreach($category->archives->load() as $archive){ ?>
<li><a href="<?= $archive->url ?>"><?= category_title($archive) ?></a></li>
<? } ?>
</ul>
<? } ?>
<? if($category->entries){ ?>
<h4>Entries:</h4>
<ul>
<? foreach($category->entries->load() as $entry) { ?>
<li><a href="<?=$entry->url?>"><?=$entry->title?></a></li>
<? } ?>
</ul>
<? } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment