diff options
| author | Julian Blake Kongslie | 2012-04-05 13:32:06 -0700 |
|---|---|---|
| committer | Julian Blake Kongslie | 2012-04-05 13:47:44 -0700 |
| commit | e11a4dbc199227bfe39442f19967aa6fcb3b7754 (patch) | |
| tree | 7f443c5fad3957da495ab4279652aa36d2a14ebd /templates/page.tmpl | |
| parent | Starting work on a new oneshot, Punishment. (diff) | |
| download | writing-e11a4dbc199227bfe39442f19967aa6fcb3b7754.tar.xz | |
Adding trails.
Diffstat (limited to 'templates/page.tmpl')
| -rw-r--r-- | templates/page.tmpl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/page.tmpl b/templates/page.tmpl index bef43ed..392be84 100644 --- a/templates/page.tmpl +++ b/templates/page.tmpl | |||
| @@ -6,15 +6,34 @@ | |||
| 6 | <title><TMPL_VAR TITLE></title> | 6 | <title><TMPL_VAR TITLE></title> |
| 7 | <link rel="stylesheet" href="/yui/reset/reset-min.css" type="text/css" /> | 7 | <link rel="stylesheet" href="/yui/reset/reset-min.css" type="text/css" /> |
| 8 | <link rel="stylesheet" href="<TMPL_VAR BASEURL>style.css" type="text/css" /> | 8 | <link rel="stylesheet" href="<TMPL_VAR BASEURL>style.css" type="text/css" /> |
| 9 | <TMPL_LOOP TRAILLOOP> | ||
| 10 | <TMPL_IF PREVPAGE><link rel="pref" href="<TMPL_VAR PREVURL>" title="<TMPL_VAR PREVTITLE>" /></TMPL_IF> | ||
| 11 | <link rel="up" href="<TMPL_VAR TRAILURL>" title="<TMPL_VAR TRAILTITLE>" /> | ||
| 12 | <TMPL_IF NEXTPAGE><link rel="next" href="TMPL_VAR NEXTURL>" title="<TMPL_VAR NEXTTITLE>" /></TMPL_IF> | ||
| 13 | </TMPL_LOOP> | ||
| 9 | </head> | 14 | </head> |
| 10 | <body> | 15 | <body> |
| 11 | <section class="header"> | 16 | <section class="header"> |
| 12 | <h1><TMPL_VAR TITLE></h1> | 17 | <h1><TMPL_VAR TITLE></h1> |
| 18 | <TMPL_LOOP TRAILLOOP> | ||
| 19 | <div class="trail"> | ||
| 20 | <TMPL_IF PREVPAGE><div class="prev"><a href="<TMPL_VAR PREVURL>"><TMPL_VAR PREVTITLE></a></div><TMPL_ELSE><div class="prev"> </div></TMPL_IF> | ||
| 21 | <div class="up"><a href="<TMPL_VAR TRAILURL>"><TMPL_VAR TRAILTITLE></a></div> | ||
| 22 | <TMPL_IF NEXTPAGE><div class="next"><a href="<TMPL_VAR NEXTURL>"><TMPL_VAR NEXTTITLE></a></div><TMPL_ELSE><div class="next"> </div></TMPL_IF> | ||
| 23 | </div> | ||
| 24 | </TMPL_LOOP> | ||
| 13 | </section> | 25 | </section> |
| 14 | <section class="content"> | 26 | <section class="content"> |
| 15 | <TMPL_VAR CONTENT> | 27 | <TMPL_VAR CONTENT> |
| 16 | </section> | 28 | </section> |
| 17 | <section class="footer"> | 29 | <section class="footer"> |
| 30 | <TMPL_LOOP TRAILLOOP> | ||
| 31 | <div class="trail"> | ||
| 32 | <TMPL_IF PREVPAGE><div class="prev"><a href="<TMPL_VAR PREVURL>"><TMPL_VAR PREVTITLE></a></div><TMPL_ELSE><div class="prev"> </div></TMPL_IF> | ||
| 33 | <div class="up"><a href="<TMPL_VAR TRAILURL>"><TMPL_VAR TRAILTITLE></a></div> | ||
| 34 | <TMPL_IF NEXTPAGE><div class="next"><a href="<TMPL_VAR NEXTURL>"><TMPL_VAR NEXTTITLE></a></div><TMPL_ELSE><div class="next"> </div></TMPL_IF> | ||
| 35 | </div> | ||
| 36 | </TMPL_LOOP> | ||
| 18 | <div class="lastedited">Last edited <TMPL_VAR MTIME></div> | 37 | <div class="lastedited">Last edited <TMPL_VAR MTIME></div> |
| 19 | </section> | 38 | </section> |
| 20 | </body> | 39 | </body> |
