diff options
Diffstat (limited to '.template.html')
-rw-r--r-- | .template.html | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/.template.html b/.template.html index 8a36551..e3b33e7 100644 --- a/.template.html +++ b/.template.html | |||
@@ -31,6 +31,7 @@ | |||
31 | </head> | 31 | </head> |
32 | <body> | 32 | <body> |
33 | $for(include-before)$ $include-before$ $endfor$ | 33 | $for(include-before)$ $include-before$ $endfor$ |
34 | <article id="header"> | ||
34 | <header> | 35 | <header> |
35 | <!-- title --> | 36 | <!-- title --> |
36 | $if(title)$<h1 class="title">$title$</h1>$endif$ | 37 | $if(title)$<h1 class="title">$title$</h1>$endif$ |
@@ -56,20 +57,23 @@ $for(include-before)$ $include-before$ $endfor$ | |||
56 | $endif$ | 57 | $endif$ |
57 | </header> | 58 | </header> |
58 | 59 | ||
59 | <section class="thing $genre$"> | 60 | <section class="content $genre$"> |
60 | $body$ | 61 | $body$ |
61 | </section> | 62 | </section> |
63 | </article> | ||
62 | 64 | ||
63 | <nav> | 65 | <nav> |
64 | $for(project.prev)$ | 66 | $for(project.prev)$ |
65 | <a class="prevlink" href="$project.prev.link$.html"> | 67 | <a class="prevlink" href="$project.prev.link$.html" |
68 | title="Next article$if(project.title)$ in $project.title$$endif$"> | ||
66 | $project.prev.title$ | 69 | $project.prev.title$ |
67 | </a> | 70 | </a> |
68 | $endfor$ | 71 | $endfor$ |
69 | <a href="#" id="lozenge" title="Random page"> ◊ </a> | 72 | <a href="#" id="lozenge" title="Random page"> ◊ </a> |
70 | $for(project.next)$ | 73 | $for(project.next)$ |
71 | <a class="nextlink" href="$project.next.link$.html"> | 74 | <a class="nextlink" href="$project.next.link$.html" |
72 | $project.next.title$ | 75 | title="Previous article$if(project.title)$ in $project.title$$endif$"> |
76 | $project.next.title$> | ||
73 | </a> | 77 | </a> |
74 | $endfor$ | 78 | $endfor$ |
75 | </nav> | 79 | </nav> |