index.html

 1---
 2layout: page
 3title: "~/"
 4subtitle: "You are, quite obviously, home."
 5sitemap:
 6  priority: 0.9
 7---
 8<script type="text/javascript">
 9  var BFTN_WIDGET_OPTIONS = {
10    org: dp, // @type {string}
11    cookieExpirationDays: 2, // @type {number}
12    disableGoogleAnalytics: true, // @type {boolean}
13    disableDonations: false, // @type {boolean}
14    alwaysShow: false, // @type {boolean}
15  };
16</script>
17<script src="https://july23.battleforthenet.com/widget.js" async></script>
18<ul class="list-posts">
19    {% for post in site.posts %}
20        <li class="post-teaser">
21            <a href="{{ post.url | prepend: site.baseurl }}">
22                <span class="post-teaser__title">{{ post.title }}</span>
23                <span class="post-teaser__date">{{ post.date | date: "%d %B %Y" }}</span>
24            </a>
25        </li>
26    {% endfor %}
27</ul>