summaryrefslogtreecommitdiff
path: root/projects/index.html
blob: 9dbf78eb0f881745c88402f3b2ab149b3980fc9c (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>My Projects</h1>

{% for project in site.data.projects %}
<h2>
  {% if project.live %}
    <a href="{{ project.live }}" target="_blank">{{ project.name }}</a>
  {% else %}
    {{ project.name }}
  {% endif %}
</h2>
<section>
  <p class="muted">
    {{ project.tech }}
    {% if project.github %}
      &bull;
      <a class="muted" href="https://github.com/{{ project.github }}">{{ project.github }}</a>
    {% endif %}
  </p>
  <p>{{ project.description }}</p>
</section>
{% endfor %}