summaryrefslogtreecommitdiff
path: root/projects/index.html
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-03-30 02:46:14 -0400
committerBen Burwell <ben@benburwell.com>2015-03-30 02:46:14 -0400
commit2b59a0f8355ae8b4bf71cf5c2a365de91f5ebe1b (patch)
treebaaeeeccef58a402b328b1abbdd667dca7e6b5f7 /projects/index.html
parent475275e0bb1d7e494ff3579595bf0e8dcda8474a (diff)
redesign
Diffstat (limited to 'projects/index.html')
-rw-r--r--projects/index.html25
1 files changed, 14 insertions, 11 deletions
diff --git a/projects/index.html b/projects/index.html
index 7c7202d..2c3b837 100644
--- a/projects/index.html
+++ b/projects/index.html
@@ -4,14 +4,17 @@ title: Ben Burwell’s Projects
description: Projects I’ve done.
---
-<section>
- <h2><a class="project" href="/projects/viewtime/">ViewTime, a Browser Extension for YouTube&trade;</a></h2>
-
- <h2><a class="project" href="/projects/forest-printer-management/">Forest&trade; Printer Management System</a></h2>
-
- <h2><a class="project" href="/projects/mdengine/">MDEngine</a></h2>
-
- <h2><a class="project" href="/projects/helvetica/">Helvetica for Safari and Chrome</a></h2>
-
- <h2><a class="project" href="/projects/unified-show-control/">Unified Show Control</a></h2>
-</section>
+{% for project in site.data.projects %}
+{% if project.live %}
+<h1><a href="{{ project.live }}">{{ project.name }}</a></h1>
+{% else %}
+<h1>{{ project.name }}</h1>
+{% endif %}
+<ul class="compressed-list">
+ <li>{{ project.description }}</li>
+ <li>{{ project.tech }}</li>
+ {% if project.github %}
+ <li><a href="https://github.com/{{ project.github }}"><i class="fa fa-github"></i> {{ project.github }}</a></li>
+ {% endif %}
+</ul>
+{% endfor %}