summaryrefslogtreecommitdiffstats
path: root/templates/projects.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/projects.html')
-rw-r--r--templates/projects.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/projects.html b/templates/projects.html
new file mode 100644
index 0000000..7405542
--- /dev/null
+++ b/templates/projects.html
@@ -0,0 +1,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 %}