diff options
Diffstat (limited to '.template.html')
-rw-r--r-- | .template.html | 117 |
1 files changed, 0 insertions, 117 deletions
diff --git a/.template.html b/.template.html deleted file mode 100644 index 96ee7b3..0000000 --- a/.template.html +++ /dev/null | |||
@@ -1,117 +0,0 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <!-- AUTOCENTO OF THE BREAKFAST TABLE --> | ||
3 | <!-- vim: fdm=indent | ||
4 | --> | ||
5 | <html lang="en"> | ||
6 | <head> | ||
7 | <meta charset="utf-8"> | ||
8 | <meta name="generator" content="pandoc"> | ||
9 | <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"> | ||
10 | <meta name="author" content="Case Duckworth"> | ||
11 | |||
12 | <title>$title$ | Autocento of the breakfast table</title> | ||
13 | <link rel="icon" type="image/png" href="img/favico.png" /> | ||
14 | |||
15 | <link rel="stylesheet" type="text/css" href="style.css"> | ||
16 | <script src="./js/lozenge.js" type="text/javascript"> </script> | ||
17 | <script src="./js/hylo.js" type="text/javascript"> </script> | ||
18 | |||
19 | <!--[if lt IE 9]> | ||
20 | <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"> </script> | ||
21 | <![endif]--> | ||
22 | <!-- <script src="js/external.js"> </script> --> | ||
23 | $for(header-includes)$ | ||
24 | $headerincludes$ | ||
25 | $endfor$ | ||
26 | </head> | ||
27 | <body id="$id$"$if(project.class)$ class="$project.class$"$endif$> | ||
28 | $for(include-before)$ $include-before$ $endfor$ | ||
29 | |||
30 | <article class="container"> | ||
31 | <header> | ||
32 | <!-- title --> | ||
33 | $if(title)$<h1 class="title">$title$</h1>$endif$ | ||
34 | $if(subtitle)$<h1 class="subtitle">$subtitle$</h1>$endif$ | ||
35 | |||
36 | <div class="header-extra"> | ||
37 | $if(dedication)$ | ||
38 | <!-- dedication --> | ||
39 | <div class="dedication">$dedication$</div> | ||
40 | $endif$ | ||
41 | |||
42 | $if(epigraph.content)$ | ||
43 | <!-- epigraph --> | ||
44 | <div class="epigraph"> | ||
45 | $if(epigraph.link)$ | ||
46 | <a href="$epigraph.link$">$epigraph.content$</a> | ||
47 | $else$ | ||
48 | $epigraph.content$ | ||
49 | $endif$ | ||
50 | |||
51 | $if(epigraph.attrib)$ | ||
52 | <div class="attrib">$epigraph.attrib$</div> | ||
53 | $endif$ | ||
54 | </div> | ||
55 | $endif$ | ||
56 | </div> | ||
57 | </header> | ||
58 | |||
59 | $if(ekphrastic.image)$ | ||
60 | <div class="ekphrastic"> | ||
61 | $if(ekphrastic.link)$ | ||
62 | <a href="$ekphrastic.link$"> | ||
63 | <img src="img/$ekphrastic.image$" | ||
64 | $if(ekphrastic.title)$ | ||
65 | title="$ekphrastic.title$" | ||
66 | $endif$ | ||
67 | $if(ekphrastic.alt)$ | ||
68 | alt="$ekphrastic.alt$" | ||
69 | $else$ | ||
70 | alt="$ekphrastic.title$" | ||
71 | $endif$ | ||
72 | $if(ekphrastic.class)$ | ||
73 | class="$ekphrastic.class$" | ||
74 | $endif$ | ||
75 | /> | ||
76 | </a> | ||
77 | $else$ | ||
78 | <img src="img/$ekphrastic.image$" | ||
79 | $if(ekphrastic.title)$ | ||
80 | title="$ekphrastic.title$" | ||
81 | $endif$ | ||
82 | $if(ekphrastic.alt)$ | ||
83 | alt="$ekphrastic.alt$" | ||
84 | $else$ | ||
85 | alt="$ekphrastic.title$" | ||
86 | $endif$ | ||
87 | $if(ekphrastic.class)$ | ||
88 | class="$ekphrastic.class$" | ||
89 | $endif$ | ||
90 | /> | ||
91 | $endif$ | ||
92 | </div> | ||
93 | $endif$ | ||
94 | |||
95 | <section class="content $genre$"> | ||
96 | $body$ | ||
97 | </section> | ||
98 | </article> | ||
99 | <nav> | ||
100 | $for(project.prev)$ | ||
101 | <a class="prevlink" href="$project.prev.link$.html" | ||
102 | title="Previous article$if(project.title)$ in $project.title$$endif$"> | ||
103 | $project.prev.title$ | ||
104 | </a> | ||
105 | $endfor$ | ||
106 | <a href="#" id="lozenge" title="Random page"> ◊ </a> | ||
107 | $for(project.next)$ | ||
108 | <a class="nextlink" href="$project.next.link$.html" | ||
109 | title="Next article$if(project.title)$ in $project.title$$endif$"> | ||
110 | $project.next.title$ | ||
111 | </a> | ||
112 | $endfor$ | ||
113 | </nav> | ||
114 | |||
115 | $for(include-after)$ $include-after$ $endfor$ | ||
116 | </body> | ||
117 | </html> | ||