removed code example from article.html example because it referenced page-only commands

This commit is contained in:
blog derek
2013-09-13 04:46:07 -07:00
parent 92746659b1
commit 8a846c5888

View File

@@ -40,15 +40,13 @@ The dictionary key is the name of the album and the lists contain the filenames.
###article.html
{% for album, images in page.gallery.iteritems() %}
<h2><a href="{{ SITEURL }}/pages/gallery.html#{{ article.album }}">{{ article.album }}</a></h2>
<ul>
{% for image in article.galleryimages %}
<li><a class="{{ article.album }} cboxElement" href="{{ SITEURL }}/static/images/gallery/{{ article.album }}/{{ image }}"><img src="{{ SITEURL }}/static/images/gallery200x200/{{ article.album }}/{{ image }}"></a></li>
{% endfor %}
</ul>
{% endfor %}
###gallery.html
{% for album, images in page.gallery.iteritems() %}