blob: b2ac90dc04b713daca32c1db99c2914d7bfce931 (
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">
{{top.content|smartypants|safe}}
</div>
</section>
<section>
<h2>About the Site</h2>
<img src="{{IMAGES_URL}}site.jpg" alt="me" />
<div class="content">
{{middle.content|smartypants|safe}}
</div>
</section>
<section>
<h2>Colophon</h2>
<img src="{{IMAGES_URL}}colo.jpg" alt="me" />
<div class="content">
{{bottom.content|smartypants|safe}}
</div>
</section>
</article>
{% endblock %}
|