diff options
Diffstat (limited to 'templates/details/about.html')
-rw-r--r-- | templates/details/about.html | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/templates/details/about.html b/templates/details/about.html index e5561c9..f8b36c8 100644 --- a/templates/details/about.html +++ b/templates/details/about.html @@ -18,19 +18,28 @@ <article role="main"> <h1 class="hide">About Luxagraf</h1> <section> - <h2>Background</h2> - <img src="{{IMAGES_URL}}bio.jpg" alt="me" /> - <div class="content">{%for object in object_list %}{%if forloop.first %} - {{object.content|smartypants|safe}}{%endif%} {% endfor %} + <div class="content"> + <p>Luxagraf is written and published by Scott Gilbertson.</p> + <p><img src="{{MEDIA_URL}}img/bio.jpg" alt="Scott Gilbertson" /></p> + <p><small>Photo by <a href="http://twitter.com/lagsolo" >@lagsolo</a></small></p> </div> </section> <section> - <h2>About the Site</h2> - <img src="{{IMAGES_URL}}site.jpg" alt="me" /> + <h2>Colophon</h2> + <div class="content"> + <p>Luxagraf is publishing using a custom content management system written with the <a href="http://docs.djangoproject.com/en/dev/ref/contrib/gis/">GeoDjango framework</a>. The site validates as HTML5 and uses @media rules to handle phones, iPads and the like. It should work in any modern web browser. If you have trouble, let me know.</p> + + <p>I write in long hand because I am an old man and that's we used to roll. I make the clackity noise in BBEdit, the best text editor ever.</p> + + <p>Photos are processed with Adobe Lightroom and Photoshop. The galleries were inspired by the lovely <a href="http://www.pictorymag.com/">Pictory</a> photo showcase. Also note that the photos are licensed under the creative commons so you're free to use them so long as you attribute them to me.</p> + </div> + </section> + + {%comment%} <div class="content">{%for object in object_list %}{%if forloop.last %} {{object.content|smartypants|safe}}{%endif%} {% endfor %} </div> - </section> + <section> <h2>Colophon</h2> <img src="{{IMAGES_URL}}colo.jpg" alt="me" /> @@ -38,5 +47,6 @@ {{object.content|smartypants|safe}}{%endif%} {% endfor %} </div> </section> + {%endcomment%} </article> {% endblock %} |