-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
34 lines (31 loc) · 822 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
---
layout: default
nofooter: true
---
<h3>Contact</h3>
<p>
<a href="mailto:{{ site.email }}">{{ site.email }}</a>
</p>
{% if site.github_username %}
<p>
<a href="https://github.com/{{ site.github_username }}">@{{ site.github_username }} on GitHub</a>
</p>
{% endif %}
{% if site.stackoverflow %}
<p>
<a href="{{ site.stackoverflow }}">Stack Overflow</a>
</p>
{% endif %}
<h3>Read</h3>
<ul>
{% for post in site.posts %}
<li style="margin-bottom: 0.75em;">
<a style="text-decoration: none" href="{{ post.url | prepend: site.baseurl }}">
<small><time style="font-family: monospace">{{ post.date | date: "%b %-d, %Y" }}</time></small>
</a>
<a href="{{ post.url | prepend: site.baseurl }}" style="display: block; margin-left: 0.5em">
{{ post.title }}
</a>
</li>
{% endfor %}
</ul>