diff options
author | luxagraf <sng@luxagraf.net> | 2011-01-14 16:42:40 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2011-01-14 16:42:40 -0500 |
commit | 205fc827ef1dd21acc95139fca57651c9baccb2d (patch) | |
tree | f77682d61ed2a557bd215f79e00ab1f30829c490 /templates | |
parent | e5a4539dc35a835a7a3c9c1edbcb4b3253087b23 (diff) |
reworking the mobile stylesheet
Diffstat (limited to 'templates')
-rw-r--r-- | templates/details/about.html | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/templates/details/about.html b/templates/details/about.html index 7a25c0e..b2ac90d 100644 --- a/templates/details/about.html +++ b/templates/details/about.html @@ -6,31 +6,34 @@ {%block bodyid%}id="about"{%endblock%} {% block primary %}<section id="page-header"> + <h1 class="hide">About Luxagraf</h1> <nav id="page-nav"> - <ul id="breadcrumbs"> - <li><a href="/" title="luxagraf homepage">Home</a> →</li> + <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> + + <article role="main"> <h1 class="hide">About Luxagraf</h1> <section> - <div class="image"><img src="{{IMAGES_URL}}bio.jpg" alt="me" /></div> + <h2>Background</h2> + <img src="{{IMAGES_URL}}bio.jpg" alt="me" /> <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> + <h2>About the Site</h2> + <img src="{{IMAGES_URL}}site.jpg" alt="me" /> <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> + <h2>Colophon</h2> + <img src="{{IMAGES_URL}}colo.jpg" alt="me" /> <div class="content"> {{bottom.content|smartypants|safe}} </div> |