summaryrefslogtreecommitdiff
path: root/projects/index.html
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-08-11 22:59:47 -0400
committerBen Burwell <ben@benburwell.com>2015-08-11 22:59:47 -0400
commitd5560f3dd006cbb21c2ce2da9bbbe723b7fc2a2d (patch)
tree9989d0c958937611595666f0bafb8a1cdfef1bef /projects/index.html
parent6b0fad5657d802603cb6f64f51b5387bbfbc2059 (diff)
parentaf51b0ef270746181e4d43626074f5b08bcaf9c3 (diff)
Merge pull request #6 from benburwell/use-primer-css
Use 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 %}