-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfiction.html
More file actions
48 lines (47 loc) · 1.22 KB
/
fiction.html
File metadata and controls
48 lines (47 loc) · 1.22 KB
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
38
39
40
41
42
43
44
45
46
47
48
---
title: Fiction
permalink: fiction.html
layout: page
---
<div>
<h1>Fiction</h1>
</div>
{% for entry in site.data.fiction %}
<div class="fiction-head">
<div>
<a href={{ entry.uri }} style="margin-bottom: 0px;">
<h2>{{ entry.title }}</h2>
</a>
</div>
<div class="fiction-head-type">
<h3>{{ entry.form }}</h3>
</div>
</div>
<div class="fiction-body{% unless forloop.last %} with-border{% endunless %}">
{% if entry.img.size > 0 %}
<table>
<tr>
<td style="vertical-align: top" width="75%">
{% endif %}
{{ entry.description | markdownify }}
{% for bullet in entry.bullets %}
<p class="fiction-bullet">→ {{ bullet }}</p>
{% endfor %}
{% if entry.img.size > 0 %}
</td>
<td style="padding-left: 20px">
{% endif %}
{% for image in entry.img %}
<img src={{ image }} style="object-fit: fill; max-width: 100%;">
{% endfor %}
{% if entry.img.size > 0 %}
</td>
</tr>
</table>
{% endif %}
</div>
{% endfor %}
<br>
<div class="games-footer">
<a href="/fiction">Back to Top</a>
</div>