summaryrefslogtreecommitdiff
path: root/design/templates/archives/photo_daily_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'design/templates/archives/photo_daily_list.html')
-rw-r--r--design/templates/archives/photo_daily_list.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/design/templates/archives/photo_daily_list.html b/design/templates/archives/photo_daily_list.html
new file mode 100644
index 0000000..59612ac
--- /dev/null
+++ b/design/templates/archives/photo_daily_list.html
@@ -0,0 +1,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> &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">
+ {% include 'lib/img_picwide.html' with image=object caption=False exif=False is_cluster=False cluster_class='' extra='' %}
+ </article>
+ {% endfor %}
+ </main>
+{% endblock%}