blob: e2090d855e29dd17112e086079ee61d36df4628d (
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
35
36
37
38
39
40
41
42
|
{% extends 'base.html' %}
{% load typogrify %}
{% block pagetitle %}Luxagraf | About{% endblock %}
{% block metadescription %}About the site, luxagraf.net {% endblock %}
{%block bodyid%}id="about"{%endblock%}
{% block primary %}<section id="page-header">
<h1 class="hide">About Luxagraf</h1>
<nav id="page-nav">
<ul id="breadcrumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<li><a href="/" title="luxagraf homepage" itemprop="url"><span itemprop="title">Home</span></a> → </li>
<li>About</li>
</ul>
</nav>
</section>
<article role="main">
<h1 class="hide">About Luxagraf</h1>
<section>
<h2>Background</h2>
<img src="{{IMAGES_URL}}bio.jpg" alt="me" />
<div class="content">{%for object in object_list %}{%if forloop.first %}
{{object.content|smartypants|safe}}{%endif%} {% endfor %}
</div>
</section>
<section>
<h2>About the Site</h2>
<img src="{{IMAGES_URL}}site.jpg" alt="me" />
<div class="content">{%for object in object_list %}{%if forloop.last %}
{{object.content|smartypants|safe}}{%endif%} {% endfor %}
</div>
</section>
<section>
<h2>Colophon</h2>
<img src="{{IMAGES_URL}}colo.jpg" alt="me" />
<div class="content">{%for object in object_list %}{%if forloop.counter = 1 %}
{{object.content|smartypants|safe}}{%endif%} {% endfor %}
</div>
</section>
</article>
{% endblock %}
|