summaryrefslogtreecommitdiffstats
path: root/templates/projects.html
blob: 7405542c0dec44ad8011460d31620ff0866f2f3c (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "default.html" %}
{% block content %}
<h1>Projects</h1>
<ul class="projects">{% for project in page.projects %}
  <li>
    <h2>{{ project.name }}</h2>
    <p>{{ project.description }}</p>
    <a href="{{ '/' + project.location }}">More info...</a>
  </li>{% endfor %}
</ul>
{% endblock %}