diff options
Diffstat (limited to 'templates/index.twig')
| -rw-r--r-- | templates/index.twig | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/templates/index.twig b/templates/index.twig deleted file mode 100644 index f51a793..0000000 --- a/templates/index.twig +++ /dev/null | |||
| @@ -1,52 +0,0 @@ | |||
| 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 | {% include "partials/preconnect.twig" %} | ||
| 14 | |||
| 15 | <title>{{ global.title }}</title> | ||
| 16 | <meta name="author" content="{{ global.author }}"> | ||
| 17 | <meta name="description" content="{{ global.description }}"> | ||
| 18 | |||
| 19 | <meta property="og:title" content="{{ global.title }}"> | ||
| 20 | <meta property="og:description" content="{{ global.description }}"> | ||
| 21 | <meta property="og:url" content="{{ global.domain }}"> | ||
| 22 | |||
| 23 | <meta name="twitter:card" content="summary"> | ||
| 24 | <meta name="twitter:site" content="{{ global.twitter }}"> | ||
| 25 | |||
| 26 | <link rel="alternate" type="application/atom+xml" title="{{ global.author }}'s feed" href="/feed.atom"> | ||
| 27 | <link rel="stylesheet" href="/static/style.css?v={{ "now"|date("YmdHi") }}"> | ||
| 28 | <link rel="icon" type="image/png" href="/static/avatar-64x64.png?v={{ "now"|date("YmdHi") }}"> | ||
| 29 | |||
| 30 | </head> | ||
| 31 | |||
| 32 | <body> | ||
| 33 | |||
| 34 | <main> | ||
| 35 | |||
| 36 | {% include "partials/navigation.twig" %} | ||
| 37 | |||
| 38 | <h2>Posts</h2> | ||
| 39 | {% include "partials/posts.twig" %} | ||
| 40 | |||
| 41 | |||
| 42 | <h2>Side projects</h2> | ||
| 43 | {% include "partials/projects.twig" %} | ||
| 44 | |||
| 45 | </main> | ||
| 46 | |||
| 47 | <!-- google analytics --> | ||
| 48 | {{ global.ga }} | ||
| 49 | |||
| 50 | </body> | ||
| 51 | |||
| 52 | </html> | ||
