-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (32 loc) · 915 Bytes
/
index.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
---
layout: minimal
title: Garrett Robinson's Blog
---
<h1>Garrett's Blog</h1>
<p><em>Please excuse the appearance of this site, this is a work in progress...</em></p>
{% if site.posts != empty %}
<h2>Latest Post</h2>
{% assign latest_post = site.posts|first %}
<h3>{{ latest_post.title }}</h3>
<p>{{ latest_post.excerpt }}</p>
<p><a href="{{ latest_post.url }}">Read more…</a></p>
{% endif %}
<h2>Posts</h2>
{% if site.posts != empty %}
<ol>
{% for post in site.posts %}
<li>
<p><a href="{{ post.url }}">{{ post.title }}</a></p>
<p>{{ post.date | date: "%d %B %Y" }}</p>
</li>
{% endfor %}
</ol>
{% else %}
<p>There are no posts at the moment!</p>
{% endif %}
<h2>Contact</h2>
<ul>
<li><a href="mailto:[email protected]">email</a> (<a href="key.asc">gpg</a>)</li>
<li><a href="https://github.com/garrettr">github</a></li>
<li><a href="https://twitter.com/garrettr_">twitter</a></li>
</ul>