forked from mkiser/WTFJHT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yesterday.html
47 lines (37 loc) · 1.13 KB
/
yesterday.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
38
39
40
41
42
43
44
45
46
47
---
layout: default
title: Yesterday – What The Fuck Just Happened Yesterday?
image:
twitter: /public/wtfjht-t.jpg
facebook: /public/wtfjht-f.jpg
---
<!-- Pledge Drive -->
{% include pledge.html %}
<!-- MailChimp -->
{% include email.html %}
<!--End mc_embed_signup-->
<div class="posts">
{% for post in site.posts limit:2 offset:1 %}
<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 | extlinks }}
</article>
{% endfor %}
<div class="next-prev">
{% if page.previous.url %}
<a class="prev" href="{{page.previous.url}}">« {{page.previous.title}}</a>
{% endif %}
{% if page.next.url %}
<a class="next" href="{{page.next.url}}">{{page.next.title}} »</a>
{% endif %}
</div>
</div>