index_template.php 832 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. function index_start() {
  3. ?>
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7. <meta charset="utf-8">
  8. <title><?php echo(PUBLICATION_NAME)?> Index - <?php echo(SITE_NAME);?></title>
  9. <link rel="stylesheet" href="/vanilla.css">
  10. <link rel="alternate" type="application/rss+xml" title="<?php echo(SITE_NAME);?> RSS Feed" href="/feed.rss" />
  11. </head>
  12. <body>
  13. <h1><?php echo(SITE_NAME);?></h1>
  14. <h2><?php echo(PUBLICATION_NAME)?> Index</h2>
  15. <dl>
  16. <?php
  17. }
  18. function index_listing($ppub, $url) {
  19. ?>
  20. <dt><a href="<?php echo($url);?>"><?php echo(htmlentities($ppub->metadata["title"]));?></a></dt>
  21. <dd><?php echo(htmlentities($ppub->metadata["description"]));?></dd>
  22. <?php
  23. }
  24. function index_end() {
  25. ?>
  26. </dl>
  27. </body>
  28. </html>
  29. <?php
  30. }
  31. ?>