index_template.php 815 B

123456789101112131415161718192021222324252627282930313233343536
  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);?> <?php echo(PUBLICATION_NAME)?> Index</h1>
  14. <dl>
  15. <?php
  16. }
  17. function index_listing($ppub, $url) {
  18. ?>
  19. <dt><a href="<?php echo($url);?>"><?php echo(htmlentities($ppub->metadata["title"]));?></a></dt>
  20. <dd><?php echo(htmlentities($ppub->metadata["description"]));?></dd>
  21. <?php
  22. }
  23. function index_end() {
  24. ?>
  25. </dl>
  26. </body>
  27. </html>
  28. <?php
  29. }
  30. ?>