-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (45 loc) · 1.16 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
43
44
45
46
47
48
49
---
layout: default
title: Ollie Marshall, a Ruby & Java Developer from London
---
<div class="jumbotron">
<p class="lead"><strong>I’m a Ruby & Java Developer from London.</strong></p>
</div>
<hr>
<div class="row-fluid">
<div class="span12">
<h4>Thoughts</h4>
<ul class="posts">
{% for post in site.posts %}
<li><p>{{ post.date | date_to_string }} » <a href="{{ post.url }}">{{ post.title }}</a></p></li>
{% endfor %}
</ul>
</div>
</div>
<hr>
<div class="row-fluid">
<div class="span12">
<h4>Projects</h4>
<ul class="posts">
{% for project in site.data.projects["projects"] %}
<li>
<p><a href="{{ project.url }}" target="_blank">{{ project.name }}</a> - {{ project.description }}</p>
</li>
{% endfor %}
</ul>
</div>
</div>
<hr>
<div class="row-fluid">
<div class="span12">
<h4>Open source</h4>
<ul class="posts">
{% for project in site.data.projects["open_source"] %}
<li>
<p><a href="{{ project.url }}" target="_blank">{{ project.name }}</a> - {{ project.description }}</p>
</li>
{% endfor %}
</ul>
</div>
</div>
<hr>