summaryrefslogtreecommitdiff
path: root/projects/index.html
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-11-14 14:38:28 -0500
committerBen Burwell <ben@benburwell.com>2015-11-14 14:38:28 -0500
commit0d9ce29b25327f8b31040a7d945121ceaef6dc0d (patch)
treec4dfa0ab427ddd0c97c8c398a07670d820e6474f /projects/index.html
parentce236fec927e1ca7991588a374607e53172844e6 (diff)
parentf20aae71dca254e6818632821fb19617985e1cf5 (diff)
Merge pull request #8 from benburwell/redesign
Site redesign (again)
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 %}