diff options
author | luxagraf <sng@luxagraf.net> | 2020-11-11 18:43:48 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-11-11 18:43:48 -0500 |
commit | 9657a366a0a6c734b264ee5e219a9f34e8db010b (patch) | |
tree | 95b59491d81614710b628b8ab898251f786a318e /app/lttr | |
parent | becdd6508fbdad915d3202fe6c101f950b21c9cf (diff) |
fixed a template bug in list view
Diffstat (limited to 'app/lttr')
-rw-r--r-- | app/lttr/templates/lttr/friends_list.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/lttr/templates/lttr/friends_list.html b/app/lttr/templates/lttr/friends_list.html index 741311d..095bb6a 100644 --- a/app/lttr/templates/lttr/friends_list.html +++ b/app/lttr/templates/lttr/friends_list.html @@ -11,14 +11,14 @@ <main role="main" id="essay-archive" class="essay-archive archive-list"> <div class="essay-intro"> <h1 class="list-hed">Join the <em>Friends of a Long Year</em>.</h1> - <iframe target='_parent' style="border:none; background:white; width:100%; margin-top: 3em;" title="embedded form for subscribing the the Friends of a Long Year newsletter" src="{% url 'lttr:subscribe' slug='friends' %}"></iframe> + <iframe target='_parent' style="border:none; background:white; width:100%;" title="embedded form for subscribing the the Friends of a Long Year newsletter" src="{% url 'lttr:subscribe' slug='friends' %}"></iframe> <h2 class="subhead">Say what? </h2> - <p><em>Friends of a Long Year</em> is a monthly letter about living outdoors, travel, reading, walking, and other ephemera. Unsubscribing is easy. It's all self-hosted, secure, and <a href="/privacy" title="My privacy policy">private</a>.</p> + <p><em>Friends of a Long Year</em> is a monthly letter about living outdoors, travel, literature, music, vintage vehicles, and other ephemera. Unsubscribing is easy. It's all self-hosted, secure, and <a href="/privacy" title="My privacy policy">private</a>.</p> <p>The name <em>Friends of a Long Year</em> comes from the early 20th century explorer and desert rat, Mary Hunter Austin, whose collected essays, <a href="https://archive.org/details/lostbordersillu00brotgoog/page/n8"><cite>Lost Borders</cite></a> is dedicated to the "Friends of a Long Year".</p> <p>While I came up with this name last year, it seems particularly fitting in 2020, which is shaping up to be a long year. If you like to travel with friends, mentally for now, please, join us.</p> </div> <h3 class="list-title">Letters</h3> - <ul class="fancy-archive-list">{% for object in mailings %} + <ul class="fancy-archive-list">{% for object in object_list %} <li class="h-entry hentry" itemscope itemType="http://schema.org/Article"> <a href="{{object.get_absolute_url}}" class="u-url"> {% if object.featured_image %}<div class="circle-img-wrapper"><img src="{{object.featured_image.get_thumbnail_url}}" alt="{{object.featured_image.alt}}" class="u-photo" /></div>{%endif%} |