summaryrefslogtreecommitdiff
path: root/design/templates/archives/projects.html
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2012-09-22 22:27:04 -0400
committerluxagraf <sng@luxagraf.net>2012-09-22 22:27:04 -0400
commitefb623af0bcb47d510501c282e1326b11343a29c (patch)
tree3a35fb19f5eba3b219c65277a5fb712cbe9604ac /design/templates/archives/projects.html
parent0b481fd7931c2ae20ca21f89a87f2ba6a6c01e10 (diff)
site reorg
Diffstat (limited to 'design/templates/archives/projects.html')
-rw-r--r--design/templates/archives/projects.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/design/templates/archives/projects.html b/design/templates/archives/projects.html
new file mode 100644
index 0000000..f266c08
--- /dev/null
+++ b/design/templates/archives/projects.html
@@ -0,0 +1,29 @@
+{% extends 'base.html' %}
+{% load typogrify %}
+{% block pagetitle %}Luxagraf | Projects {% endblock %}
+{% block metadescription %}Travel Themes and Experiments {% endblock %}
+
+{%block bodyid%}id="projects-page"{%endblock%}
+
+{% block primary %}<ul class="bl" id="breadcrumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
+ <li><a href="/" title="luxagraf homepage" itemprop="url"><span itemprop="title">Home</span></a> &rarr; </li>
+ <li>Projects</li>
+ </ul>
+ <div class="top">
+ <p class="col hyphenate">These are a few of the things that I use to inspire myself to do more. The truth is, just about <a href="http://www.youtube.com/watch?v=8r1CZTLk-Gk" title="Louis CK talking about how everything is amazing">everything is amazing</a> when viewed from the proper perspective. </p>
+ <p class="col two hyphenate">The projects on luxagraf are more or less goals I've created in effort to get my body in motion, because the difference between the mundane and the amazing is often simply motion. To move is to do, and to do is to live.</p>
+ </div>
+ <section id="projects-archive" class="archive">
+ <h1 class="hide">Projects</h1>{%for object in object_list %}
+ <article>
+ <h1><a href="{{object.get_absolute_url}}" title="{{object.title}}">{{object.title|safe}} {{object.subtitle|safe}}</a></h1>
+ <div class="img">
+ <a href="{{object.get_absolute_url}}" title="{{object.title}}"><img src="{{object.image.url}}" alt="{{ object.title }}" class="post-image" /></a>
+ </div>
+ <div class="hyphenate">{{object.lede|smartypants|safe}}</div>
+ <!--<span class="button"><a href="{{project.get_absolute_url}}">More&nbsp;&raquo;</a></span>-->
+ </article> {% endfor %}
+ </section>
+{% endblock %}
+
+{% block js %}<script src="/media/js/hyphenate.min.js" type="text/javascript"></script>{% endblock%}