diff options
author | luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f> | 2010-03-28 18:00:17 +0000 |
---|---|---|
committer | luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f> | 2010-03-28 18:00:17 +0000 |
commit | 0282141a50433312df9f9be2188ccf8ae198b666 (patch) | |
tree | 9f135d466a6bd3ebe05a07eacb061009d0ba71d9 /templates/details/about.html | |
parent | 393bfd7ad1f49f473708c7bef336a529aee6a0d8 (diff) |
visual redesign
Diffstat (limited to 'templates/details/about.html')
-rw-r--r-- | templates/details/about.html | 29 |
1 files changed, 27 insertions, 2 deletions
diff --git a/templates/details/about.html b/templates/details/about.html index 0147960..0c62d4d 100644 --- a/templates/details/about.html +++ b/templates/details/about.html @@ -1,12 +1,37 @@ {% extends 'base.html' %} {% load typogrify %} -{% block pagetitle %}Luxagraf | {{flatpage.title|title|smartypants|safe}}{% endblock %} +{% block pagetitle %}Luxagraf | About{% endblock %} {% block metadescription %}About the site, luxagraf.net {% endblock %} {%block bodyid%}id="about"{%endblock%} {% block primary %} <article> -{{flatpage.content|smartypants|widont|safe}} + <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 %} |