summaryrefslogtreecommitdiffstats
path: root/templates/projects/project_list.html
blob: 1ab750cba46fdd6c70ea6be2d1b235743b5bdab6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 %}