summaryrefslogtreecommitdiff
path: root/app/lttr/templates
diff options
context:
space:
mode:
authorlxf <sng@luxagraf.net>2021-10-29 10:07:56 -0400
committerlxf <sng@luxagraf.net>2021-10-29 10:07:56 -0400
commite36b19e65e5d35cb4c802823c808e714ac9e8a55 (patch)
treee98d5aa55d2b9166593506445b5d9ea79304ef88 /app/lttr/templates
parente853ff56dd7bff133754696e62187e3e93f957d0 (diff)
lttr: added thank you template for postcards
Diffstat (limited to 'app/lttr/templates')
-rw-r--r--app/lttr/templates/lttr/postcard_subscribed.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/app/lttr/templates/lttr/postcard_subscribed.html b/app/lttr/templates/lttr/postcard_subscribed.html
new file mode 100644
index 0000000..464fb72
--- /dev/null
+++ b/app/lttr/templates/lttr/postcard_subscribed.html
@@ -0,0 +1,24 @@
+{% extends 'base.html' %}
+{% load typogrify_tags %}
+
+{% block pagetitle %}Thanks for subscribing! | luxagraf.net {% endblock %}
+{% block metadescription %}Thank you, I appreciate you joining the club{% endblock %}
+
+{% block primary %}
+ <nav class="breadcrumbs" itemscope itemtype="http://schema.org/BreadcrumbList">
+ <span class="nav-item" itemprop="item">
+ <a href="/" itemprop="name">Home</a>
+ <meta itemprop="position" content="1" />
+ </span>
+ <span class="nav-item" itemprop="item">
+ <span itemprop="name">postcards</span>
+ <meta itemprop="position" content="2" />
+ </span>
+ </nav>
+ <main role="main" id="essay-archive" class="archive-wrapper">
+ <div class="archive-intro">
+ <h2>Nicely Done!</h2>
+ <p>We will send you a postcard in the near future.</p>
+ </div>
+ </main>
+{%endblock%}