blob: fd6a9a4b69d7f41ecf8bec62f77dc06c651e5da5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
---
layout: master
title: Ben Burwell’s Projects
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 }}
{% 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>
{% endfor %}
|