about summary refs log tree commit diff stats
path: root/_template.html
diff options
context:
space:
mode:
authorCase Duckworth2015-02-09 12:04:05 -0700
committerCase Duckworth2015-02-09 12:04:05 -0700
commit96ab7a3ce522f38a768e67c73021bf1071832a37 (patch)
tree1d04af8a849055fdec68cbebf538b6c86424f414 /_template.html
parentFinish linking Elegy, Hezekiah; Rename files (diff)
downloadautocento-96ab7a3ce522f38a768e67c73021bf1071832a37.tar.gz
autocento-96ab7a3ce522f38a768e67c73021bf1071832a37.zip
Add Paul; move source files to src/
Diffstat (limited to '_template.html')
-rw-r--r--_template.html21
1 files changed, 13 insertions, 8 deletions
diff --git a/_template.html b/_template.html index fef7b40..6d2893f 100644 --- a/_template.html +++ b/_template.html
@@ -33,25 +33,30 @@ $for(include-before)$ $include-before$ $endfor$
33 <!-- epigraph --> 33 <!-- epigraph -->
34 <p class="epigraph"> 34 <p class="epigraph">
35 $epigraph.content$ 35 $epigraph.content$
36 $if(epigraph.link)$<a href="$epigraph.link$">&gt;</a>$endif$
37 </p> 36 </p>
38 $if(epigraph.attrib)$ 37 $if(epigraph.attrib)$
39 <p class="epigraph-attrib">&mdash; $epigraph.attrib$</p> 38 <p class="epigraph-attrib">
39 $if(epigraph.link)$
40 <a href="$epigraph.link$">&mdash; $epigraph.attrib$</a>
41 $else$
42 &mdash; $epigraph.attrib$
43 $endif$
44 </p>
40 $endif$ 45 $endif$
41 $endif$ 46 $endif$
42 </header> 47 </header>
43 48
49 <section class="$genre$">
44 $body$ 50 $body$
51 </section>
45 52
46 <nav> 53 <nav>
47 $if(project.prev.title)$ 54 $for(project.prev)$
48 <!--previous -->
49 <a href="$project.prev.link$.html">&lt; $project.prev.title$</a> 55 <a href="$project.prev.link$.html">&lt; $project.prev.title$</a>
50 $endif$ 56 $endfor$
51 $if(project.next.title)$ 57 $for(project.next)$
52 <!-- next -->
53 <a href="$project.next.link$.html">$project.next.title$ &gt;</a> 58 <a href="$project.next.link$.html">$project.next.title$ &gt;</a>
54 $endif$ 59 $endfor$
55 </nav> 60 </nav>
56 61
57$for(include-after)$ 62$for(include-after)$