-
Notifications
You must be signed in to change notification settings - Fork 197
/
yesterday.html
46 lines (37 loc) · 1.08 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
---
title: Yesterday's Trump, Biden, and Harris Political News
layout: default
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:1 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.date | date_to_xmlschema }}" class="post-date">
{{ post.date | date: "%m/%d/%Y" }}
</time>
<div class="post-content">
{{ post.content | extlinks }}
</div>
</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>