blob: 3318a082489c372a5b4c27dba1f3d1366c121a1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{% extends 'base.html' %}
{% load typogrify_tags %}
{% block pagetitle %}Luxagraf | Friends of a Long Year {% endblock %}
{% block metadescription %}An infrequesnt mailing list about living outdoors, travel, literature, music, vintage vehicles, and other ephemera.{% endblock %}
{% block breadcrumbs %}{% include "lib/breadcrumbs.html" with breadcrumbs=breadcrumbs %}{% endblock %}
{% 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>
<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>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>
<p>There's also the <em><a href="/range/">Range</a></em> newsletter if you'd like a photo in your inbox once a week.</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%}
|