blob: 59612ac7d3ba2a0b550b1b6814073f12a08c4091 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{% extends 'base.html' %}
{%block htmlclass%}class="detail single"{% endblock %}
{% load typogrify_tags %}
{% load html5_datetime %}
{% load pagination_tags %}
{% block pagetitle %} Field Notes | 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">
{% include 'lib/img_picwide.html' with image=object caption=False exif=False is_cluster=False cluster_class='' extra='' %}
</article>
{% endfor %}
</main>
{% endblock%}
|