summaryrefslogtreecommitdiff
path: root/projects/index.html
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-05-05 17:28:21 -0400
committerBen Burwell <ben@benburwell.com>2015-05-05 17:28:21 -0400
commit27857b7643dc234d9e6135f968638b630e99377e (patch)
tree35ab4f6625110a6352e6b6c49c886813d0c10ac9 /projects/index.html
parentec03c8129ca7ff060a4937a9c7655c5e3a7ba651 (diff)
Update the Projects page to have a cleaner look
Diffstat (limited to 'projects/index.html')
-rw-r--r--projects/index.html23
1 files changed, 15 insertions, 8 deletions
diff --git a/projects/index.html b/projects/index.html
index 49365a9..a3d4f18 100644
--- a/projects/index.html
+++ b/projects/index.html
@@ -6,13 +6,20 @@ description: Projects I’ve done.
{% for project in site.data.projects %}
-<h1>{{ project.name }} {% if project.live %}<a style="font-size:1rem;" title="{{ project.title }}" href="{{ project.live }}" target="_blank"><i class="fa fa-external-link"></i></a>{% endif %}</h1>
+ <h1>
+ {% if project.live %}
+ <a href="{{ project.live }}" target="_blank">{{ project.name }}</a>
+ {% else %}
+ {{ project.name }}
+ {% endif %}
+ <small class="light-gray monospace">{{ project.tech }}</small>
+ </h1>
+
+ <p>
+ {{ project.description }}
+ {% if project.github %}
+ <a style="display:inline-block;margin-left:1rem;" href="https://github.com/{{ project.github }}"><i class="fa fa-github"></i> Read the code</a>
+ {% endif %}
+ </p>
-<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 %}