{% extends 'base.html' %} {%block htmlclass%}class="detail single"{% endblock %} {% load typogrify_tags %} {% load html5_datetime %} {% load pagination_tags %} {% block pagetitle %} Photos | luxagraf {% endblock %} {% block metadescription %} Recent Images {% endblock %} {%block bodyid%}class="photos" id="notes-archive"{%endblock%} {% block primary %} <ul class="bl" 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>Photos</li> </ul> <main role="main"> {% autopaginate object_list 8 %}{% for object in object_list %} <article class="h-entry hentry " itemscope="" itemtype="http://schema.org/Article"> <figure class="daily-figure"> {% include 'lib/img_picwide.html' with image=object caption=False exif=False is_cluster=False cluster_class='' extra='' %} <figcaption class="picwide">{{object.location}}, {{object.location.state.country}}</figcaption> </figure> </article> {% endfor %} </main> {% endblock%}