summaryrefslogtreecommitdiff
path: root/design/templates/archives/photo_daily_list.html
blob: 04254ff29ccd2c63df8f5004e8cae579296a2bdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% 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> &rarr; </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%}