summaryrefslogtreecommitdiff
path: root/templates/trails.tmpl
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-11-27 11:29:41 +0200
committerLars Wirzenius <liw@liw.fi>2020-11-27 12:27:35 +0200
commit92d8aadbadb5767f41342cd2958b8662ef0b8d96 (patch)
tree430ef6d12674a27eca37dbd80f8053f12c5c37d4 /templates/trails.tmpl
parent193673fa4ca986a8503dded44019f3b0eac30084 (diff)
downloadobnam.org-92d8aadbadb5767f41342cd2958b8662ef0b8d96.tar.gz
page.tmpl: simplify lots
Drop unnecessary parts. Alwys choose html5.
Diffstat (limited to 'templates/trails.tmpl')
-rw-r--r--templates/trails.tmpl23
1 files changed, 0 insertions, 23 deletions
diff --git a/templates/trails.tmpl b/templates/trails.tmpl
deleted file mode 100644
index 54c0460..0000000
--- a/templates/trails.tmpl
+++ /dev/null
@@ -1,23 +0,0 @@
-<TMPL_LOOP TRAILLOOP>
-<TMPL_IF __FIRST__><TMPL_IF HTML5><nav class="trails"><TMPL_ELSE><div class="trails"></TMPL_IF></TMPL_IF>
-<div class="trail">
-<TMPL_IF PREVPAGE>
-<span class="trailprev">
-<span class="trailarrow">←</span>
-<a href="<TMPL_VAR PREVURL>"><TMPL_VAR PREVTITLE></a>
-<span class="trailsep">|</span>
-</span>
-</TMPL_IF>
-<span class="trailup">
-<a href="<TMPL_VAR TRAILURL>"><TMPL_VAR TRAILTITLE></a>
-</span>
-<TMPL_IF NEXTPAGE>
-<span class="trailnext">
-<span class="trailsep">|</span>
-<a href="<TMPL_VAR NEXTURL>"><TMPL_VAR NEXTTITLE></a>
-<span class="trailarrow">→</span>
-</span>
-</TMPL_IF>
-</div>
-<TMPL_IF __LAST__><TMPL_IF HTML5></nav><TMPL_ELSE></div></TMPL_IF></TMPL_IF>
-</TMPL_LOOP>