diff options
Diffstat (limited to 'newsletter/templates/index.hbs')
| -rw-r--r-- | newsletter/templates/index.hbs | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/newsletter/templates/index.hbs b/newsletter/templates/index.hbs new file mode 100644 index 0000000..8a96125 --- /dev/null +++ b/newsletter/templates/index.hbs | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | <!DOCTYPE html> | ||
| 2 | <html lang="en"> | ||
| 3 | |||
| 4 | <head> | ||
| 5 | |||
| 6 | <meta charset="utf-8"> | ||
| 7 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
| 8 | <meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
| 9 | |||
| 10 | <meta name="theme-color" content="#ffffff"> | ||
| 11 | <meta name="generator" content="https://github.com/mitjafelicijan/staticgen"> | ||
| 12 | |||
| 13 | <title>Mitja Felicijan - Weekly links archive</title> | ||
| 14 | |||
| 15 | <link rel="stylesheet" href="https://mitjafelicijan.com/static/style.css"> | ||
| 16 | <link rel="icon" type="image/png" href="https://mitjafelicijan.com/static/avatar-64x64.png"> | ||
| 17 | |||
| 18 | </head> | ||
| 19 | |||
| 20 | <body> | ||
| 21 | |||
| 22 | <main> | ||
| 23 | |||
| 24 | <a href="/">⬅ Back home</a> | ||
| 25 | |||
| 26 | <h2>Weekly links archive</h2> | ||
| 27 | <ul class="article-list"> | ||
| 28 | {{#each files}} | ||
| 29 | <li><a href="/weekly-newsletter-archive/{{ this.file }}">{{ this.year }}, {{ this.week }}</a></li> | ||
| 30 | {{/each}} | ||
| 31 | </ul> | ||
| 32 | |||
| 33 | </main> | ||
| 34 | |||
| 35 | </body> | ||
| 36 | |||
| 37 | </html> | ||
