diff options
author | Ben Burwell <ben@benburwell.com> | 2015-11-14 14:25:23 -0500 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2015-11-14 14:25:23 -0500 |
commit | 8856c415d16ae558609b615873826816c6718f42 (patch) | |
tree | e7a3a83e7cf0fbb75da3fb1517046207917630b8 /projects/index.html | |
parent | ce236fec927e1ca7991588a374607e53172844e6 (diff) |
redesign
Diffstat (limited to 'projects/index.html')
-rw-r--r-- | projects/index.html | 12 |
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 %} • - <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 %} |