summaryrefslogtreecommitdiff
path: root/templates/archives/projects.html
blob: 4abdf5933c0151f64b8913bd02eeb49d9e48f5cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% 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>
        <div class="top"><p class="col">These are a few of the things that I use to inspire myself to do more. Everything, even the boring town you live in now, is amazing when viewed from the proper perspective. </p>
        
        <p class="col two">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>
        {%for project in object_list %}
        <ul class="project-tease">
            <li>
                <dl>
                    <dt>
                    <a href="{{project.get_absolute_url}}"><h4>{{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 %}