diff options
author | luxagraf <sng@luxagraf.net> | 2020-02-05 16:18:53 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-02-05 16:18:53 -0500 |
commit | 33209aed7c3e858d95576bdcfefa17c3f5d7597b (patch) | |
tree | 08e6877551da29c0b645208c9e9e806c4624cd42 /design/templates/lttr/subscriber_form.html | |
parent | 932a69ba325fab012630313edcfe697e93d340d7 (diff) |
migrated newsletter templates and updated mailing model
Diffstat (limited to 'design/templates/lttr/subscriber_form.html')
-rw-r--r-- | design/templates/lttr/subscriber_form.html | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/design/templates/lttr/subscriber_form.html b/design/templates/lttr/subscriber_form.html deleted file mode 100644 index 83e1e28..0000000 --- a/design/templates/lttr/subscriber_form.html +++ /dev/null @@ -1,39 +0,0 @@ -{% extends 'base.html' %} -{% load typogrify_tags %} - -{% block pagetitle %}Luxagraf | Friends of a Long Year {% endblock %} -{% block metadescription %}An infrequesnt mailing list about travel, photography, tools, walking, the natural world and other ephemera.{% 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>Lttr</li> - </ul> - <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> - <form action="" method="post" class="generic-form flex newsletter-subscribe">{% csrf_token %} - {% for field in form %} - <fieldset> - {{field.label_tag}} - {{field}} - </fieldset> - {% if forloop.last %}<input type="submit" name="post" class="btn" value="Subscribe" />{%endif%} - </form> - <small class="alert">{% if field.errors %}{{field.errors}}{% endif %}</small> - {%endfor%} - <h2 class="subhead">Say what? </h2> - <p><em>Friends of a Long Year</em> is an infrequent mailing that will keep you up-to-date with luxagraf and offer some thoughts on topics like travel, photography, the natural world, tools, walking and other ephemera. It comes about twice a month, sometimes less, sometimes more. Unsubscribing is easy. It's all self-hosted, secure, and <a href="/privacy" title="My privacy policy">private</a>.</p> - <p>The name comes from the great 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". This somewhat inscrutable dedication grabbed me, and seemed like the perfect name for this mailing list.</p> - </div> - <h3 class="list-title">Letters</h3> - <ul>{% for object in object_list %} - <li class="h-entry hentry" itemscope itemType="http://schema.org/Article"> - <span class="date dt-published">{{object.pub_date|date:"F Y"}}</span> - <a href="{{object.get_absolute_url}}"> - <h2>{{object.title|safe|smartypants|widont}}</h2> - <p class="p-summary">{% if object.sub_title %}{{object.sub_title|safe|smartypants}}{%else%}{{object.metadescription}}{%endif%}</p> - </a> - </li> - {%endfor%}</ul> - </main> -{%endblock%} |