-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (51 loc) · 2.04 KB
/
index.html
File metadata and controls
57 lines (51 loc) · 2.04 KB
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
48
49
50
51
52
53
54
55
56
57
---
layout: default
title: Home
---
<div class="intro">
<p><a href="/about/"><img src="/img/devin-reams-london.jpeg" alt="Devin Reams wearing a teal shirt in front of a teal sign that says 'trouble'" width="200"></a></p>
{{ site.intro | markdownify }}
</div>
<ul class="social">
<li><a rel="me" href="https://lnkd.in/devinreams" target="_blank"><span class="octicon octicon-briefcase"></span> LinkedIn</a></li>
<li><a rel="me" href="https://github.com/devinreams" target="_blank"><span class="octicon octicon-mark-github"></span> GitHub</a></li>
<li><a rel="me" href="https://instagram.com/devinreams" target="_blank"><span class="octicon octicon-device-camera"></span> Instagram</a></li>
<li><a rel="me" href="mailto:devin@rea.ms"><span class="octicon octicon-mail"></span> Email</a></li>
</ul>
<div class="posts">
{% for post in paginator.posts %}
<div class="post {{ post.layout }}">
{% if post.layout == "link" %}
<a href="{{ post.url }}" style="float:right"><span class="octicon octicon-link"></span></a>
<h1 class="post-title">
<a href="{{ post.link }}" title="External link to {{ post.title }}">{{ post.title }} <span class="octicon octicon-link-external"></span></a>
</h1>
{{ post.content }}
{% else %}
<h1 class="post-title">
<a href="{{ post.url }}">
{{ post.title }}
</a>
</h1>
<span class="post-date">{{ post.date | date: "%A, %B %-d, %Y" }}</span>
<p>{{ post.excerpt | markdownify }}</p>
{% endif %}
</div>
{% endfor %}
</div>
<div class="pagination">
{% if paginator.next_page %}
<a class="pagination-item older" href="/page/{{paginator.next_page}}/">Older</a>
{% else %}
<span class="pagination-item older">Older</span>
{% endif %}
{% if paginator.previous_page %}
{% if paginator.page == 2 %}
<a class="pagination-item newer" href="/">Newer</a>
{% else %}
<a class="pagination-item newer" href="/page/{{paginator.previous_page}}/">Newer</a>
{% endif %}
{% else %}
<span class="pagination-item newer">Newer</span>
{% endif %}
</div>