diff options
Diffstat (limited to 'templates/details/about.html')
-rw-r--r-- | templates/details/about.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/details/about.html b/templates/details/about.html index b2ac90d..e2090d8 100644 --- a/templates/details/about.html +++ b/templates/details/about.html @@ -20,22 +20,22 @@ <section> <h2>Background</h2> <img src="{{IMAGES_URL}}bio.jpg" alt="me" /> - <div class="content"> - {{top.content|smartypants|safe}} + <div class="content">{%for object in object_list %}{%if forloop.first %} + {{object.content|smartypants|safe}}{%endif%} {% endfor %} </div> </section> <section> <h2>About the Site</h2> <img src="{{IMAGES_URL}}site.jpg" alt="me" /> - <div class="content"> - {{middle.content|smartypants|safe}} + <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" /> - <div class="content"> - {{bottom.content|smartypants|safe}} + <div class="content">{%for object in object_list %}{%if forloop.counter = 1 %} + {{object.content|smartypants|safe}}{%endif%} {% endfor %} </div> </section> </article> |