aboutsummaryrefslogtreecommitdiff
path: root/templates/index.twig
blob: b7916cf8a00511c8c87f6baedd81d272469948bf (plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">

  <head>

    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <meta name="theme-color" content="#ffffff">
    <meta name="generator" content="https://github.com/mitjafelicijan/staticgen">

    <link rel="preconnect" href="https://www.google-analytics.com">

    <title>{{ global.title }}</title>
    <meta name="author" content="{{ global.author }}">
    <meta name="description" content="{{ global.description }}">

    <meta property="og:title" content="{{ global.title }}">
    <meta property="og:description" content="{{ global.description }}">
    <meta property="og:url" content="{{ global.domain }}">

    <meta name="twitter:card" content="summary">
    <meta name="twitter:site" content="{{ global.twitter }}">

    <link rel="alternate" type="application/atom+xml" title="{{ global.author }}'s feed" href="/feed.atom">
    <link rel="stylesheet" href="/static/style.css?v={{ "now"|date("YmdHi") }}">
    <link rel="icon" type="image/png" href="/static/avatar-64x64.png?v={{ "now"|date("YmdHi") }}">

  </head>

  <body>

    <main>

      {% include "partials/navigation.twig" %}

      <h2>Posts</h2>
      {% include "partials/posts.twig" %}


      <h2>Projects</h2>
      {% include "partials/projects.twig" %}

    </main>

    <!-- google analytics -->
    {{ global.ga }}

  </body>

</html>