about.php 1001 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. require_once("./conf.php");
  3. $meta_title = "About";
  4. $meta_description = $CONF['META_DESCRIPTION'];
  5. $last_modified = filemtime(__FILE__);
  6. include("./templates/header.php");
  7. echo "<hr/>";
  8. // Navigate bottom
  9. echo '<nav class="thread_vertical_nav"><big><a title="Jump to bottom" href="#bottom">▼</a></big></nav>';
  10. ?>
  11. <main>
  12. <article class="about">
  13. <header>
  14. <center><h1>About <?php echo $CONF['BBS_NAME'] ?></h1></center>
  15. </header>
  16. <p>You info goes here.</p>
  17. <h2>Subtitle</h2>
  18. <p>More info.</p>
  19. <footer>
  20. <center>
  21. <small><?php echo "Last modified on " . date("Y-m-d H:i:s", $last_modified) . " (UTC)"; ?></small>
  22. </center>
  23. </footer>
  24. </article>
  25. </main>
  26. <?php
  27. echo "<nav class=\"return-nav\"><a href=\"/index.php\" title=\"Go to index page\">Return</a></nav>";
  28. // Navigate top
  29. echo '<nav class="thread_vertical_nav"><big><a title="Jump to top" href="#top">▲</a></big></nav>';
  30. include("./templates/footer.html");
  31. ?>