summaryrefslogtreecommitdiffstats
path: root/templates/projects/project_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/projects/project_list.html')
-rw-r--r--templates/projects/project_list.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/projects/project_list.html b/templates/projects/project_list.html
new file mode 100644
index 0000000..1ab750c
--- /dev/null
+++ b/templates/projects/project_list.html
@@ -0,0 +1,20 @@
+<!-- -*- Mode: django-html-mumamo -*- -->
+
+{% extends "projects/base.html" %}
+
+{% block subtitle %}
+ projects
+{% endblock %}
+
+{% block content %}
+ {% if object_list %}
+ <dl>
+ {% for project in object_list %}
+ <dt><a href="/projects/{{ project.slug }}/">{{ project.name }}</a></dt>
+ <dd>{{ project.tagline }}</dd>
+ {% endfor %}
+ </dl>
+ {% else %}
+ Well, you know me, I'm lazy. Got nothing going on.
+ {% endif %}
+{% endblock %}