summaryrefslogtreecommitdiff
path: root/projects/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'projects/index.html')
-rw-r--r--projects/index.html12
1 files changed, 8 insertions, 4 deletions
diff --git a/projects/index.html b/projects/index.html
index d9beb47..b5e863a 100644
--- a/projects/index.html
+++ b/projects/index.html
@@ -1,23 +1,27 @@
---
-layout: master
+layout: blog
title: Ben Burwell’s Projects
description: Projects I’ve done.
---
+<h1>Projects</h1>
+
{% for project in site.data.projects %}
- <h1>
+<section>
+ <h2>
{% if project.live %}
<a href="{{ project.live }}" target="_blank">{{ project.name }}</a>
{% else %}
{{ project.name }}
{% endif %}
- </h1>
+ </h2>
<p class="muted sans">
{{ project.tech }}
{% if project.github %}
&bull;
- <a href="https://github.com/{{ project.github }}"><i class="fa fa-github"></i> {{ project.github }}</a>
+ <a href="https://github.com/{{ project.github }}"><i class="icon-github"></i>{{ project.github }}</a>
{% endif %}
</p>
<p>{{ project.description }}</p>
+</section>
{% endfor %}