-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubscribed.liquid
37 lines (35 loc) · 1.28 KB
/
subscribed.liquid
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
30
31
32
33
34
35
36
37
---
title: Thanks for subscribing to Optimised
layout: base
description: "Fortnightly insights into the ways website performance and optimisation can help your customers, your
business, and the planet. Subscribe today, and start optimising."
noIndex: true
eleventyExcludeFromCollections: true
---
<section>
<h1 class="heading">Subscribed</h1>
<p>
Thanks for subscribing to Optmised. The next newsletter will be sent out on soon. Sit tight, it's not too far
away!
</p>
<p>
In the meantime, you can read the last newsletter below or head over to the <a href="/">archive page</a> to see
previous issues.
</p>
</section>
<hr>
{% assign latest = collections.issue | last %}
<article class="post flow" id="post-content">
<h1 class="heading">{{ latest.data.title }}</h1>
<aside class="flow">
<p>
<span class="heading">Published:</span>
<time
datetime="{{ latest.data.published | w3DateFilter }}">{{ latest.data.published | dateFilter | upcase }}</time>
</p>
<div id="share-text"></div>
</aside>
<div class="flow">{{ latest.templateContent }}</div>
</article>
<script async src="/js/share-text.mjs" type="module"></script>
<script async nomodule="" src="/js/share-text.js"></script>