-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (35 loc) · 1.15 KB
/
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
38
39
40
41
42
---
layout: default
title: Joseph Billingsley
---
<section class="about center-text">
<div class="middle">
<h1>
Hello! I'm Joseph Billingsley.
</h1>
<p>
I am a PhD student at the University of Exeter <a href="http://www.josephbillingsley.co.uk/blog/2017/07/16/HCI-NFV-and-SLAs-My-PhD-in-Plain-English">studying resource allocation in virtualised networks</a>.
I also bake pies, ride horses and jump out of planes.
</p>
</div>
</section>
<section>
<div class="middle">
{% for post in paginator.posts %}
<div class="post">
<h2>
<a href="{{ post.url }}">
{{ post.title }}
</a>
</h2>
<time datetime="{{ post.date | "%Y-%m-%d" }}">
{{ post.date | date: "%d %b %Y" | upcase }}
</time>
<p>{{ post.excerpt }}</p>
<a class="read-more" href="{{ post.url }}">
Read more >
</a>
</div>
{% endfor %}
</div>
</section>