diff options
author | lxf <sng@luxagraf.net> | 2021-11-06 09:42:47 -0400 |
---|---|---|
committer | lxf <sng@luxagraf.net> | 2021-11-06 09:42:47 -0400 |
commit | d9f51299809bfb6b3ac589b7c42016d0ef240299 (patch) | |
tree | aa5f945e82fdbf1b66aca82fe5122f6ff5a12eb9 /templates/archives/photo_daily_list.html | |
parent | dde9914dbbc6cda18ba59024065727c8dc6bcdf4 (diff) |
moved templates to top level directory
Diffstat (limited to 'templates/archives/photo_daily_list.html')
-rw-r--r-- | templates/archives/photo_daily_list.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/archives/photo_daily_list.html b/templates/archives/photo_daily_list.html new file mode 100644 index 0000000..04254ff --- /dev/null +++ b/templates/archives/photo_daily_list.html @@ -0,0 +1,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> → </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%} |