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, 0 insertions, 20 deletions
diff --git a/templates/projects/project_list.html b/templates/projects/project_list.html
deleted file mode 100644
index 1ab750c..0000000
--- a/templates/projects/project_list.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<!-- -*- 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 %}