forked from mkiser/WTFJHT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
first-100-days.html
33 lines (31 loc) · 935 Bytes
/
first-100-days.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
---
layout: default
title: The First 100 Days - What The Fuck Just Happened Today?
description: Logging the first 100 days of the Trump administration.
date: 2017-04-29
image:
twitter: /public/wtfjht-t.jpg
facebook: /public/wtfjht-f.jpg
---
<!-- MailChimp -->
{% include email.html %}
<div class="posts">
{% for post in site.posts reversed %}
{% if forloop.index <= 100 %}
<article class="post">
<h2 class="post-title">
<a href="{{ site.baseurl }}{{ post.url }}">
{{ post.title }}:
<span class="post-small">{{ post.description }}</span></a>
</h2>
<time datetime="{{ post.last_modified | date_to_xmlschema }}" class="post-date">
{{ post.date | date: "%m/%d/%Y" }}
<small><em>Updated: {{ post.last_modified | date: "%m/%d/%Y %r %Z"}}
</em></small>
</time>
{{ post.content }}
</article>
{% else %}
{% endif %}
{% endfor %}
</div>