diff options
author | lxf <sng@luxagraf.net> | 2021-10-28 20:50:06 -0400 |
---|---|---|
committer | lxf <sng@luxagraf.net> | 2021-10-28 20:50:06 -0400 |
commit | 774a6634865a67238837d1edde3a437d0dde8e16 (patch) | |
tree | 25a7cdbd368678abf6c869b76bddb4c81bd4d203 /app/posts/templates | |
parent | 4bff8bb3ba33dc0164a097c6dd06aa81dc59986b (diff) |
lttr: added a form for people to get postcards
Diffstat (limited to 'app/posts/templates')
-rw-r--r-- | app/posts/templates/posts/friends_list.html | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/app/posts/templates/posts/friends_list.html b/app/posts/templates/posts/friends_list.html index b77f345..799fcf3 100644 --- a/app/posts/templates/posts/friends_list.html +++ b/app/posts/templates/posts/friends_list.html @@ -7,22 +7,12 @@ {% block primary %} <main role="main" class="archive-wrapper"> <div class="archive-intro"> - <h1 class="list-hed">Join the <em>Friends of a Long Year</em>.</h1> + <h1 class="list-hed"><em>Psst</em>, Wanna Join the <em>Friends of a Long Year</em>?</h1> <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="list-subhed">Say what? </h2> - <p><em>Friends of a Long Year</em> is a monthly letter about living outdoors, travel, literature, music, vintage vehicles, and other ephemera. It's written in the spirit of Mary Austin. And Mike’s emails. A more detailed explaination can be found <a href="/jrnl/2020/11/invitation">here</a>.</p> + <p><em>Friends of a Long Year</em> is a private mailing list that delivers <a href="/jrnl/">journal posts</a> from this site to your inbox like it's still 1995. It's written in the spirit of Mary Austin. And Mike’s emails. A more detailed explaination can be found <a href="/jrnl/2020/11/invitation">here</a>.</p> + <p>If you really want to go nuts and experience the world of like, 1986, you can <a href="/card/">sign up here to get a postcard</a> from us on the road. Yes. Seriously.</p> <p>Unsubscribing is easy. It's all <a href="/src/building-your-own-mailing-list-software">self-hosted</a> and designed to <a href="/privacy" title="My privacy policy">respect your privacy</a>.</p> </div> - <h3 class="archive-sans">Letters</h3> - <ul class="archive-list">{% for object in object_list %} - <li class="h-entry hentry archive-list-card" 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%} - <span class="date dt-published card-smcaps">issue {{object.get_issue_str}} – {{object.pub_date|date:"M y"}}</span> - <h2 class="card-hed">{{object.title|safe|smartypants|widont}}</h2> - {% if object.subtitle %}<h3 class="p-summary card-lede">{{object.subtitle|safe|smartypants|widont}}</h3>{%endif%} - </a> - </li> - {%endfor%}</ul> </main> {%endblock%} |