colophon.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. $bodyclasses = 'colophon page';
  3. $title = 'About this site';
  4. $tagline = '';
  5. $description = 'Colophon, a funny little word historically meaning a statement at the end of a publication.';
  6. $keywords = 'colophon';
  7. $twitter_image = 'images/colopic.jpg';
  8. ?>
  9. <?=i('_header')?>
  10. <article class="body grid grid-cols-1 sm:grid-cols-2 gap-x-6 gap-y-0">
  11. <h2>Colophon</h2>
  12. <section class="col-start-1 col-span-1 sm:col-span-2">
  13. <p class="noindent">Funny little word derived from Greek <span class="greek">κολοφων</span>, historically meaning a statement at the end of a publication, providing information about it. Think of metadata with a thick layer of dust on top.</p>
  14. </section>
  15. <section class="left col-start-1 col-span-1">
  16. <h3>Author</h3>
  17. <figure class="center">
  18. <picture alt="This guy here.">
  19. <source srcset="<?=$baseurl?>images/colopic.jpg 1x, <?=$baseurl?>images/colopic-2x.jpg 2x" />
  20. <img class="rounded" srcset="<?=$baseurl ?>images/colopic.jpg" alt="This guy here." />
  21. </picture>
  22. <figcaption><span>This guy here, portrayed by <a href="//www.flickr.com/photos/xalira">Elena</a></span></figcaption>
  23. </figure>
  24. <p class="noindent">I am the sole author of this website's content, unless otherwise specified, and it's licensed as <a href="//creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA 4.0</a>.</p>
  25. </section>
  26. <section class="right col-start-1 col-span-1 sm:col-start-2">
  27. <h3>Tech bits</h3>
  28. <p class="noindent">For a whole bunch of reasons that I'm <strong>not</strong> about to explain, this website is lovingly crafted in plain <a href="//en.wikipedia.org/wiki/HTML5">HTML5</a>, with bits of JavaScript (<a href="//jquery.com">jQuery</a> flavoured), and a little <a href="//www.php.net">PHP</a> on the server side.
  29. I'm using <a href="https://code.visualstudio.com/">Visual Studio Code</a> and sometimes <a href="//macromates.com/">TextMate 2</a> (now open source!) to edit the code.
  30. The styling is provided by <a href="https://tailwindcss.com/">Compass</a> to make it look beautiful… and responsive!</p>
  31. <h3>Fonts</h3>
  32. <p class="noindent">I'm using a number of fonts:</p>
  33. <ul>
  34. <li>body and footer: <a href="//www.google.com/fonts/specimen/Open+Sans">Open Sans</a></li>
  35. <li>headers: <a href="//www.google.com/fonts/specimen/Oswald">Oswald</a></li>
  36. </ul>
  37. </section>
  38. </article>
  39. <?=i('_footer')?>