From c654151582a77a0b459e3f55b687e43a32d4b67d Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Thu, 26 Mar 2015 19:46:45 -0700 Subject: Add HAPAX LEGOMENA support & flatten structure The list of hapax legomena for this project is available at /hapax.html. In addition, the directory structure has been further flattened. All assets (javascript, lua, images, fonts) are in /trunk/. One other thing was to update the makefile. It compiles hapax.txt from rivers. --- .template.html | 117 --------------------------------------------------------- 1 file changed, 117 deletions(-) delete mode 100644 .template.html (limited to '.template.html') diff --git a/.template.html b/.template.html deleted file mode 100644 index 96ee7b3..0000000 --- a/.template.html +++ /dev/null @@ -1,117 +0,0 @@ -<!DOCTYPE html> -<!-- AUTOCENTO OF THE BREAKFAST TABLE --> -<!-- vim: fdm=indent ---> -<html lang="en"> -<head> - <meta charset="utf-8"> - <meta name="generator" content="pandoc"> - <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"> - <meta name="author" content="Case Duckworth"> - - <title>$title$ | Autocento of the breakfast table</title> - <link rel="icon" type="image/png" href="img/favico.png" /> - - <link rel="stylesheet" type="text/css" href="style.css"> - <script src="./js/lozenge.js" type="text/javascript"> </script> - <script src="./js/hylo.js" type="text/javascript"> </script> - - <!--[if lt IE 9]> - <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"> </script> - <![endif]--> - <!-- <script src="js/external.js"> </script> --> - $for(header-includes)$ - $headerincludes$ - $endfor$ -</head> -<body id="$id$"$if(project.class)$ class="$project.class$"$endif$> - $for(include-before)$ $include-before$ $endfor$ - - <article class="container"> - <header> - <!-- title --> - $if(title)$<h1 class="title">$title$</h1>$endif$ - $if(subtitle)$<h1 class="subtitle">$subtitle$</h1>$endif$ - - <div class="header-extra"> - $if(dedication)$ - <!-- dedication --> - <div class="dedication">$dedication$</div> - $endif$ - - $if(epigraph.content)$ - <!-- epigraph --> - <div class="epigraph"> - $if(epigraph.link)$ - <a href="$epigraph.link$">$epigraph.content$</a> - $else$ - $epigraph.content$ - $endif$ - - $if(epigraph.attrib)$ - <div class="attrib">$epigraph.attrib$</div> - $endif$ - </div> - $endif$ - </div> - </header> - - $if(ekphrastic.image)$ - <div class="ekphrastic"> - $if(ekphrastic.link)$ - <a href="$ekphrastic.link$"> - <img src="img/$ekphrastic.image$" - $if(ekphrastic.title)$ - title="$ekphrastic.title$" - $endif$ - $if(ekphrastic.alt)$ - alt="$ekphrastic.alt$" - $else$ - alt="$ekphrastic.title$" - $endif$ - $if(ekphrastic.class)$ - class="$ekphrastic.class$" - $endif$ - /> - </a> - $else$ - <img src="img/$ekphrastic.image$" - $if(ekphrastic.title)$ - title="$ekphrastic.title$" - $endif$ - $if(ekphrastic.alt)$ - alt="$ekphrastic.alt$" - $else$ - alt="$ekphrastic.title$" - $endif$ - $if(ekphrastic.class)$ - class="$ekphrastic.class$" - $endif$ - /> - $endif$ - </div> - $endif$ - - <section class="content $genre$"> - $body$ - </section> - </article> - <nav> - $for(project.prev)$ - <a class="prevlink" href="$project.prev.link$.html" - title="Previous article$if(project.title)$ in $project.title$$endif$"> - $project.prev.title$ - </a> - $endfor$ - <a href="#" id="lozenge" title="Random page"> ◊ </a> - $for(project.next)$ - <a class="nextlink" href="$project.next.link$.html" - title="Next article$if(project.title)$ in $project.title$$endif$"> - $project.next.title$ - </a> - $endfor$ - </nav> - - $for(include-after)$ $include-after$ $endfor$ -</body> -</html> -- cgit 1.4.1-21-gabe81