blob: b5e863afc7fc3c21fe372c23e5241a9a2c7cc296 (
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
|
---
layout: blog
title: Ben Burwell’s Projects
description: Projects I’ve done.
---
<h1>Projects</h1>
{% for project in site.data.projects %}
<section>
<h2>
{% if project.live %}
<a href="{{ project.live }}" target="_blank">{{ project.name }}</a>
{% else %}
{{ project.name }}
{% endif %}
</h2>
<p class="muted sans">
{{ project.tech }}
{% if project.github %}
•
<a href="https://github.com/{{ project.github }}"><i class="icon-github"></i>{{ project.github }}</a>
{% endif %}
</p>
<p>{{ project.description }}</p>
</section>
{% endfor %}
|