aboutsummaryrefslogtreecommitdiff
path: root/emailing/templates/mailing.hbs
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2020-12-29 00:44:19 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2020-12-29 00:44:19 +0100
commitd4728e6972882e09ead61214367a35c5c6feafef (patch)
tree59106b2fb5e18519e8f415ec0716528340734558 /emailing/templates/mailing.hbs
parentda6a25065b6e300527a392ff66c74bbeb90ba192 (diff)
downloadmitjafelicijan.com-d4728e6972882e09ead61214367a35c5c6feafef.tar.gz
Added newsletter
Diffstat (limited to 'emailing/templates/mailing.hbs')
-rw-r--r--emailing/templates/mailing.hbs42
1 files changed, 0 insertions, 42 deletions
diff --git a/emailing/templates/mailing.hbs b/emailing/templates/mailing.hbs
deleted file mode 100644
index 42b464d..0000000
--- a/emailing/templates/mailing.hbs
+++ /dev/null
@@ -1,42 +0,0 @@
1<html>
2
3 <head>
4 <title>{{ title }}</title>
5 </head>
6
7 <body style="background: #f2f2f2; padding: 60px; color: #222222; line-height: 22px; font-family: sans-serif, system-ui, -apple-system; font-size: 16px;">
8
9 <div style="width: 650px; background: #ffffff; text-align: left; padding: 40px; margin: 0 auto; border-radius: 10px;">
10
11 {{#each campaign.categories}}
12 {{#each this.links}}
13 <div style="margin-bottom: 30px;">
14 <a href="{{this.url}}" style="color: #3252a8; font-weight: bold;">{{this.title}}</a>
15 <div style="margin-block-start: 5px; font-size: 90%;">{{this.excerpt}}</div>
16 <div>
17 {{#each this.tags}}
18 <span style="background: #e6e6e6;
19 color: #777;
20 border-radius: 3px;
21 padding: 0px 10px;
22 font-size: 70%;
23 display: inline-block;
24 margin-top: 5px;
25 font-weight: 600;">{{.}}</span>
26 {{/each}}
27 </div>
28 </div>
29 {{/each}}
30 {{/each}}
31
32 </div>
33
34 <div style="text-align: center; font-size: 80%; margin-top: 20px;">
35 <a style="color: #666; margin: auto 10px" href="https://mitjafelicijan.com/weekly-links-archive/">weekly links archive</a>
36 <a style="color: #666; margin: auto 10px" href="https://mitjafelicijan.com">mitjafelicijan.com</a>
37 <a style="color: #666; margin: auto 10px" href="https://github.com/mitjafelicijan">github.com/mitjafelicijan</a>
38 </div>
39
40 </body>
41
42</html>