summaryrefslogtreecommitdiff
path: root/comic/templates/issue.html.j2
blob: 9281ec0717ba90f8da59b655f1021dc831adf811 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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>