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 /design/templates/archives/photo_daily_list.html | |
parent | dde9914dbbc6cda18ba59024065727c8dc6bcdf4 (diff) |
moved templates to top level directory
Diffstat (limited to 'design/templates/archives/photo_daily_list.html')
-rw-r--r-- | design/templates/archives/photo_daily_list.html | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/design/templates/archives/photo_daily_list.html b/design/templates/archives/photo_daily_list.html deleted file mode 100644 index 04254ff..0000000 --- a/design/templates/archives/photo_daily_list.html +++ /dev/null @@ -1,25 +0,0 @@ -{% 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%} |