-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
31 lines (25 loc) · 827 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
---
title: Rowan Manning, Web Geek
description: The personal website of Rowan Manning, Web Geek. Rowan loves to solve problems with code, enjoys delicious beer and dreams of cats
layout: page
aside: home
lastmod: 2013-02-09 21:44
---
<h2 class="h1">Recent Posts</h2>
<div itemscope itemtype="http://schema.org/Blog">
{% include blog-meta.html %}
<ul class="list posts">
{% assign numposts = 0 %}
{% for post in site.posts %}
{% if post.noindex != true and numposts < 4 %}
{% assign numposts = numposts | plus:1 %}
<li class="flow">
{% include post.html %}
</li>
{% endif %}
{% endfor %}
</ul>
</div>
<div class="flow">
<a href="/blog/" class="blocklink">View more posts »</a>
</div>