aboutsummaryrefslogtreecommitdiff
path: root/templates/list.html
diff options
context:
space:
mode:
authorMirek Kratochvil <exa.exa@gmail.com>2023-07-19 20:36:50 +0200
committerMirek Kratochvil <exa.exa@gmail.com>2023-07-19 20:39:41 +0200
commit614054a72e41af9e77964c01b7ab0da7dc5b27fb (patch)
tree888ab379d6852342d99f041fa5b09f4a5ece2d49 /templates/list.html
parent0e717b5dda55602aa3ef34991f9c7dd8762c678b (diff)
downloadreploy-614054a72e41af9e77964c01b7ab0da7dc5b27fb.tar.gz
reploy-614054a72e41af9e77964c01b7ab0da7dc5b27fb.tar.bz2
make the contents completely generic
Diffstat (limited to 'templates/list.html')
-rw-r--r--templates/list.html7
1 files changed, 3 insertions, 4 deletions
diff --git a/templates/list.html b/templates/list.html
index df04ffe..5ae7db0 100644
--- a/templates/list.html
+++ b/templates/list.html
@@ -7,7 +7,7 @@
{{?htag}}
Category listing:
{{#htag}}
- <a class="cards-tagpiece" href="{{href}}">
+ <a href="{{href}}">
{{^tag}}all{{/tag}}
{{?tag}}» {{tag}}{{/tag}}
</a>
@@ -16,7 +16,7 @@
</h1>
<p>See the <a href="{{taghref}}">hierarchical view of this category</a>.</p>
{{?subtags}}<h3>Sub-categories</h3>
- <ul class="cards-subcategories">
+ <ul>
{{#subtags}}
<li><a href="{{href}}">{{#tags}} » {{.}} {{/tags}}</a></li>
{{/subtags}}
@@ -24,12 +24,11 @@
{{/subtags}}
{{?pages}}
<h3>Cards</h3>
- <ul class="cards-list">
+ <ul>
{{#pages}}
<li><a href="{{href}}">{{meta.title}}</a></li>
{{/pages}}
</ul>
{{/pages}}
-{{> footer.html}}
</body>
</html>