You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
845 B

  1. <div class="narrow">
  2. <?= partial('partials/header') ?>
  3. <br>
  4. <ul class="entries">
  5. <?php foreach($this->entries as $entry): ?>
  6. <?= partial('partials/entry', array('entry' => $entry, 'user' => $this->user)) ?>
  7. <?php endforeach; ?>
  8. </ul>
  9. <nav class="site-navigation">
  10. <? if($this->older) { ?>
  11. <a class="prev" href="/<?= $this->user->url ?>?before=<?= $this->older ?>" rel="prev"><abbr>&larr;</abbr> <span>Older</span></a>
  12. <? } else { ?>
  13. <a class="prev disabled"><abbr>&larr;</abbr> <span>Older</span></a>
  14. <? } ?>
  15. <? if($this->newer) { ?>
  16. <a class="next" href="/<?= $this->user->url ?>?before=<?= $this->newer ?>" rel="next"><abbr>&rarr;</abbr> <span>Newer</span></a>
  17. <? } else { ?>
  18. <a class="next disabled"><abbr>&rarr;</abbr> <span>Newer</span></a>
  19. <? } ?>
  20. </nav>
  21. </div>