summaryrefslogtreecommitdiff
path: root/templates/archives/projects.html
diff options
context:
space:
mode:
authorluxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f>2010-04-04 23:30:30 +0000
committerluxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f>2010-04-04 23:30:30 +0000
commitf8cda18e218cf9849ea7b70fc39b505420c930b9 (patch)
tree43eecea66befb5d84dac316f4ca9de7944855a1b /templates/archives/projects.html
parenta1138b560308e043de00c2211293583515def19e (diff)
started work on the 5x5 project, models, views, templates
Diffstat (limited to 'templates/archives/projects.html')
-rw-r--r--templates/archives/projects.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/templates/archives/projects.html b/templates/archives/projects.html
new file mode 100644
index 0000000..cdefc1f
--- /dev/null
+++ b/templates/archives/projects.html
@@ -0,0 +1,31 @@
+{% extends 'base.html' %}
+{% load typogrify %}
+{% block pagetitle %}Luxagraf | Projects {% endblock %}
+{% block metadescription %}Travel Themes and Experiments {% endblock %}
+
+{%block bodyid%}id="projects"{%endblock%}
+
+{% block primary %}
+<article>
+ <ul id="breadcrumbs">
+ <li><a href="/" title="luxagraf homepage">Home</a> &rarr;</li>
+ <li>Projects</li>
+ </ul>
+ <h1 class="hide">Projects</h1>
+ {%for project in object_list %}
+ <ul>
+ <li class="project-tease">
+ <dl>
+ <dt>
+ <a href="{{project.get_absolute_url}}"><h4 class="proj">{{project.title|safe}}</h4> {{project.subtitle|safe}}</a>
+ </dt>
+ <dd>{{project.lede|safe}}</dd>
+ </dl>
+ <div class="img"><img src="{{project.image.url}}" /></div>
+ </li>
+ </ul>
+ {% endfor %}
+
+</article>
+{% endblock %}
+