blob: 0c62d4d60f9b943de36d8685c02db333196efa0b (
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
|
{% 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 %}
<article>
<ul id="breadcrumbs">
<li><a href="/" title="luxagraf homepage">Home</a> →</li>
<li>About</li>
</ul>
<section>
<div class="image"><img src="{{IMAGES_URL}}bio.jpg" alt="me" /></div>
<div class="content">
{{top.content|smartypants|safe}}
</div>
</section>
<div class="clearfix"></div>
<section>
<div class="image"><img src="{{IMAGES_URL}}site.jpg" alt="me" /></div>
<div class="content">
{{middle.content|smartypants|safe}}
</div>
</section>
<div class="clearfix"></div>
<section>
<div class="image"><img src="{{IMAGES_URL}}colo.jpg" alt="me" /></div>
<div class="content">
{{bottom.content|smartypants|safe}}
</div>
</section>
</article>
{% endblock %}
|