diff options
Diffstat (limited to 'emailing/template.hbs')
| -rw-r--r-- | emailing/template.hbs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/emailing/template.hbs b/emailing/template.hbs new file mode 100644 index 0000000..39dc28c --- /dev/null +++ b/emailing/template.hbs | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | <html> | ||
| 2 | |||
| 3 | <head> | ||
| 4 | <title></title> | ||
| 5 | </head> | ||
| 6 | |||
| 7 | <body style="background: #f2f2f2; padding: 60px; color: #222222; line-height: 22px; font-family: sans; 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 categories}} | ||
| 12 | {{#each this.links}} | ||
| 13 | <div style="margin-bottom: 30px;"> | ||
| 14 | <a href="{{this.url}}" style="color: #3252a8; font-weight: bold;">{{this.title}} ({{this.source}})</a> | ||
| 15 | <div style="margin-block-start: 5px; font-size: 90%;">{{this.excerpt}}</div> | ||
| 16 | </div> | ||
| 17 | {{/each}} | ||
| 18 | {{/each}} | ||
| 19 | |||
| 20 | </div> | ||
| 21 | |||
| 22 | <p style="text-align: center; font-size: 80%;">If you would like to stop receiving these emails reply to this email.</p> | ||
| 23 | |||
| 24 | </body> | ||
| 25 | |||
| 26 | </html> | ||
