-
Notifications
You must be signed in to change notification settings - Fork 0
/
all.html
executable file
·51 lines (43 loc) · 1.22 KB
/
all.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
43
44
45
46
47
48
49
50
51
---
layout: default
title: Magnus Eriksson
description: Magnus Eriksson is a this and a that
keywords: Magnus Eriksson,blog,html
change_frequency: daily
priority: 1.0
---
<div class="intro">
<p>
Welcome to the online home of
<a href="about.html">Magnus Eriksson</a>,
<br>
Phd Candidate
at Lund University
/ University of Macerata,
<br>
researcher at
<a href="https://www.tii.se/people/magnus-eriksson">The Interactive Institute</a>
<br>
and member of
<a href="projects.html">various other constellations</a>
.
</p>
</div>
<h1>Posts</h1>
<h4>| <a href="/all.html">All posts</a> | <a href="/notswedish.html">Non-swedish posts</a> | <a href="/tldr.html">Long posts</a> |
<form id="search" method="get" action="http://www.google.com/search">
<input class="text" type="text" name="q" />
<input type="hidden" name="sitesearch" value="blay.se" />
<input class="button" type="submit" value="Sök" />
</form>
</h4>
<ul class="listing">
{% for post in site.posts %}
<li>
<span>{{ post.date | date: "%B %e, %Y" | ordinalize }}</span>
<a href="{{ post.url }}">{{ post.title }}</a>
<br>
<div class="summary">{{ post.summary }}</div>
</li>
{% endfor %}
</ul>