summaryrefslogtreecommitdiff
path: root/comic/templates/issue.html.j2
diff options
context:
space:
mode:
authorBotond Hende <nettingman@gmail.com>2025-12-23 17:39:29 +0100
committerBotond Hende <nettingman@gmail.com>2025-12-23 17:39:29 +0100
commita365cbec827ad44e196c62558272e723e3a3b564 (patch)
tree8655728428e2eaffd7c58b5c265c06a46c5d8560 /comic/templates/issue.html.j2
parent7308b658153e089456dd1b5ad691ff8db19088cd (diff)
comic page, other than buttons, finished
Diffstat (limited to 'comic/templates/issue.html.j2')
-rw-r--r--comic/templates/issue.html.j210
1 files changed, 8 insertions, 2 deletions
diff --git a/comic/templates/issue.html.j2 b/comic/templates/issue.html.j2
index 7eca898..70b4745 100644
--- a/comic/templates/issue.html.j2
+++ b/comic/templates/issue.html.j2
@@ -14,12 +14,12 @@
<div class="bootstrap-wrapper">
<div class="container">
<a href="/" class="row dont-bother">
- <header class="col-md-7" role="banner">TITLE</header>
+ <header class="col-md-7" role="banner"><img class="banner" src="{{ site.assets_path }}/images/banner_placeholder.png" alt="banner"/></header>
</a>
<div class="row">
<main class="col-md-7">
<h1>{{ issue.title() }}</h1>
- <img class="comic" src="{{ url }}/comic.png" />
+ <img class="comic" src="{{ url }}/comic.png" alt="comic"/>
<p class="description">{{ issue.description() }}</p>
</main>
</div>
@@ -27,6 +27,12 @@
<footer class="col-md-7">
<p>Permalink to this comic: <a href="{{ url }}">{{ url }}</a></p>
<p>Image url: <a href="{{ url }}/comic.png">{{ url }}/comic.png</a></p>
+ <hr>
+ <p><a href="/feed.xml">RSS feed</a></p>
+ <hr>
+ <p>This comic series is heavily inspired by <a href="https://xkcd.com">XKCD</a></p>
+ <hr>
+ <p>The comic is licenced under <a href="https://creativecommons.org/licenses/by-nc/4.0/legalcode.en">Creative Commons Attribution-NonCommercial 4.0</a></p>
</footer>
</div>
</div>