-
Notifications
You must be signed in to change notification settings - Fork 12
/
jail.html
37 lines (36 loc) · 1.18 KB
/
jail.html
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
31
32
33
34
35
36
37
{% extends "_cpd.html" %}
{% set jail = 6 %}
{% block content %}
<div id="jail-landing" class="featured-image-wrapper">
<img class="featured-image" src={{ stages[jail].featured_image }}>
<h1>{{ stages[jail].headline | markdown }}</h1>
<div class="scroll-injunction">
<i class="fa fa-chevron-down"></i>
Scroll To Read
<i class="fa fa-chevron-down"></i>
</div>
<div id="index-injunction" class="photo-caption">
{{ stages[jail].image_caption | markdown }}
</div>
</div>
<div class="content container">
<div class="col-md-6 col-md-offset-1">
{{ render_file("content/jail.md") | markdown }}
</div>
<div class="col-md-4">
{{ read_file("content/jail_rail.md") | markdown }}
</div>
<div id="credits" class="row">
<div class="copy col-md-8 col-md-offset-2">
<hr>
{{ read_file("content/credits.md")|markdown }}
</div>
</div>
</div>
<div id='footer'>
<div class='container'>
<a id="prev" href="/prosecute.html"><i class="fa fa-1x fa-chevron-left"></i> Previous</a>
<a id="next" href="/court.html">Next Stage: Court <i class="fa fa-1x fa-chevron-right"></i></a>
</div>
</div>
{% endblock content %}