summaryrefslogtreecommitdiff
path: root/projects/index.html
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-08-11 22:56:34 -0400
committerBen Burwell <ben@benburwell.com>2015-08-11 22:56:34 -0400
commitb3967c83cbdba7f44c2ecef09d3e80801106ac81 (patch)
tree1dd61b9840a85ab8d3d4610bbba2f2e3aa4a00c6 /projects/index.html
parent6b0fad5657d802603cb6f64f51b5387bbfbc2059 (diff)
Update to Tiny CSS
Diffstat (limited to 'projects/index.html')
-rw-r--r--projects/index.html15
1 files changed, 5 insertions, 10 deletions
diff --git a/projects/index.html b/projects/index.html
index fd6a9a4..d9beb47 100644
--- a/projects/index.html
+++ b/projects/index.html
@@ -5,24 +5,19 @@ description: Projects I’ve done.
---
{% for project in site.data.projects %}
-
<h1>
{% if project.live %}
<a href="{{ project.live }}" target="_blank">{{ project.name }}</a>
{% else %}
{{ project.name }}
{% endif %}
- <small class="light-gray">{{ project.tech }}</small>
</h1>
-
- <p>
- {{ project.description }}
+ <p class="muted sans">
+ {{ project.tech }}
{% 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>
+ &bull;
+ <a href="https://github.com/{{ project.github }}"><i class="fa fa-github"></i> {{ project.github }}</a>
{% endif %}
</p>
-
+ <p>{{ project.description }}</p>
{% endfor %}