summaryrefslogtreecommitdiff
path: root/projects
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-12-19 20:34:17 -0500
committerBen Burwell <ben@benburwell.com>2015-12-19 20:34:17 -0500
commit7bc8ea07e5116fa2e60a2b7e4aeebcbbaa1280c8 (patch)
treeb1e3effc0c74942de46bce344478db22a82e65cc /projects
parent721db70654abfd16ebdc9e96c9593749d0a67b78 (diff)
Major UI update to monokai style
Diffstat (limited to 'projects')
-rw-r--r--projects/index.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/projects/index.html b/projects/index.html
index b5e863a..79461a4 100644
--- a/projects/index.html
+++ b/projects/index.html
@@ -4,22 +4,22 @@ title: Ben Burwell’s Projects
description: Projects I’ve done.
---
-<h1>Projects</h1>
+<h1>My Projects</h1>
{% for project in site.data.projects %}
+<h2>
+ {% if project.live %}
+ <a href="{{ project.live }}" target="_blank">{{ project.name }}</a>
+ {% else %}
+ {{ project.name }}
+ {% endif %}
+</h2>
<section>
- <h2>
- {% if project.live %}
- <a href="{{ project.live }}" target="_blank">{{ project.name }}</a>
- {% else %}
- {{ project.name }}
- {% endif %}
- </h2>
<p class="muted sans">
{{ project.tech }}
{% if project.github %}
&bull;
- <a href="https://github.com/{{ project.github }}"><i class="icon-github"></i>{{ project.github }}</a>
+ <a href="https://github.com/{{ project.github }}">{{ project.github }}</a>
{% endif %}
</p>
<p>{{ project.description }}</p>