blob: 7a25c0e5b34f6e785a7c046f90b78e6946b3687e (
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
|
{% 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">
<nav id="page-nav">
<ul id="breadcrumbs">
<li><a href="/" title="luxagraf homepage">Home</a> →</li>
<li>About</li>
</ul>
</nav>
</section>
<article>
<h1 class="hide">About Luxagraf</h1>
<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 %}
|