summaryrefslogtreecommitdiff
path: root/comic/templates/issue.html.j2
diff options
context:
space:
mode:
Diffstat (limited to 'comic/templates/issue.html.j2')
-rw-r--r--comic/templates/issue.html.j230
1 files changed, 30 insertions, 0 deletions
diff --git a/comic/templates/issue.html.j2 b/comic/templates/issue.html.j2
new file mode 100644
index 0000000..9281ec0
--- /dev/null
+++ b/comic/templates/issue.html.j2
@@ -0,0 +1,30 @@
+<!DOCTYPE html>
+<html dir="ltr" lang="en">
+<head>
+ <meta charset="utf-8"/>
+ <title>{{ issue.title() }} - {{ comic.comic_name }}</title>
+ <meta name="viewport" content="width=device-width, initial-scale=1"/>
+ <meta property="og:title" content="{{ issue.title() }}" />
+ <meta property="og:type" content="article" />
+ <meta property="og:url" content="{{ url }}" />
+ <link rel="stylesheet" href="{{ site.assets_path_static }}/css/bootstrap-grid.min.css" />
+ <link rel="stylesheet" href="{{ site.assets_path }}/css/comic.css" />
+</head>
+<body>
+<div class="bootstrap-wrapper">
+ <div class="container">
+ <a href="/" class="row dont-bother">
+ <header class="col-md-6" role="banner">TITLE</header>
+ </a>
+ <div class="row">
+ <main class="col-md-6">
+ <h1>{{ issue.title() }}</h1>
+ <img class="comic" src="{{ url }}/comic.png" />
+ <p>{{ issue.description() }}</p>
+ </main>
+ </div>
+ </div>
+</div>
+<div class="huge-vertical-spacer-at-the-bottom"></div>
+</body>
+</html>