forked from prose/starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (28 loc) · 806 Bytes
/
index.html
File metadata and controls
34 lines (28 loc) · 806 Bytes
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
---
layout: default
---
<div class="intro">
<div class="title">Hi, I'm Allan Whatmough.</div>
<div class="abstract">I'm a web developer based in London, specialising in <a href="http://djangoproject.com">Django</a> and <a href="http://plone.org">Plone</a> development.</div>
</div>
<div class="recent-posts-and-elsewhere">
<div class="article-navigation">
<h1>Recent posts</h1>
<ul>
{% for item in site.categories.blog limit:40 offset:0 %}
<li>
<a href="{{site.baseurl}}{{item.url}}" title="{{item.title}}">
{{item.title}}
</a>
<span class="date">{{ item.date | date: "%B %d, %Y" }}</span>
</li>
{% endfor %}
</ul>
</div>
<div class="elsewhere">
<h1>Elsewhere on the web</h1>
<ul>
<a href="twitter.com/allanw">Twitter</a>
</ul>
</div>
</div>