-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (40 loc) · 1.16 KB
/
index.html
File metadata and controls
43 lines (40 loc) · 1.16 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
---
layout: default
title: "Battle Reports"
---
<main>
<div id="contain">
{% for post in paginator.posts %}
<article class="report">
<h2 class="inkTitle">
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
</h2>
<p class="report-meta">
{{ post.date | date: "%B %-d, %Y" }} by {{ post.author }}
</p>
{{ post.content }}
</article>
{% endfor %}
</div>
</main>
<nav class="pagination" role="navigation">
{% if paginator.previous_page %}
<a class="prev" href="{{ paginator.previous_page_path | relative_url }}">
« Newer
</a>
{% endif %}
{% if paginator.next_page %}
<a class="next" href="{{ paginator.next_page_path | relative_url }}">
Older »
</a>
{% endif %}
</nav>
<!-- Invisible SVG filter definitions -->
<svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" style="position:absolute;overflow:hidden">
<defs>
<filter id="wavy2" x="0%" y="0%" width="100%" height="100%">
<feTurbulence baseFrequency="0.02" numOctaves="5" seed="1"/>
<feDisplacementMap in="SourceGraphic" scale="20"/>
</filter>
</defs>
</svg>