-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathposts.html
30 lines (26 loc) · 855 Bytes
/
posts.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
---
layout: page
title: Articles and Posts | Matt Joseph
excerpt: Articles and Posts by Matt Joseph
permalink: /posts/
---
<article class="page">
<div class="pure-g">
<div class="pure-u-md-1-5"></div>
<div class="pure-u-1 pure-u-md-3-5">
<h1 class="center">Articles and Posts</h1>
<p class="center">Selection of things that I've written.</p>
{% for post in site.posts %}
<h2>
<a href="{{ post.url }}">{{ post.date | date: "%B %-d, %Y" }} - {{ post.title }}</a>
</h2>
{% endfor %}
<br />
<br />
<div class="center">
<a href="https://medium.com/@mattjoseph" target="_blank" rel="noopener">You can also read some of these posts on my Medium page</a>
</div>
</div>
<div class="pure-u-md-1-5"></div>
</div>
</article>