summaryrefslogtreecommitdiff
path: root/app/lttr/templates
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf>2021-01-30 12:18:39 -0500
committerluxagraf <sng@luxagraf>2021-01-30 12:18:39 -0500
commit68872a7ae0b8c78b4d7460e6fc42fb7669de6c3c (patch)
tree7df57dfcd65027fcb4e420529d2dfac70cc7d7c1 /app/lttr/templates
parent0bac6f393845e66c22ab26f187d844dde8645c7e (diff)
lttr: wrapped archive-grid class around range archive page
Diffstat (limited to 'app/lttr/templates')
-rw-r--r--app/lttr/templates/lttr/range_list.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/lttr/templates/lttr/range_list.html b/app/lttr/templates/lttr/range_list.html
index 74cc782..c8812df 100644
--- a/app/lttr/templates/lttr/range_list.html
+++ b/app/lttr/templates/lttr/range_list.html
@@ -23,6 +23,7 @@
<p>Unsubscribing is easy. It's <a href="/src/building-your-own-mailing-list-software">self-hosted</a> and <a href="/privacy" title="My privacy policy">respects your privacy</a>. If you don't want an email, there's also <a href="/newsletter/range/feed.xml">an RSS feed</a>, and it's all archived below.</p>
</div>
<h3 class="archive-sans">Images</h3>{% for object in object_list %}
+ <div class="archive-grid">
<article class="h-entry hentry archive-grid-card" itemscope itemType="http://schema.org/Article">
<div class="card-image">
<a href="{{object.get_absolute_url}}" title="{{object.title}}">
@@ -33,6 +34,7 @@
<p class="p-author author hide" itemprop="author"><span class="byline-author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">Scott Gilbertson</span></span></p>
<time class="dt-published published dt-updated card-smcaps" datetime="{{object.pub_date|date:'c'}}">{{object.pub_date|date:"F"}} <span>{{object.pub_date|date:"j, Y"}}</span></time>
</article> {% endfor %}
+ </div>
</main>
{%endblock%}