summaryrefslogtreecommitdiff
path: root/templates/default.html
blob: 2c90301c16da616f1039d0bfff0e12fe4dd67757 (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
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="Content-Security-Policy" content="default-src 'none'; style-src 'self'; img-src 'self' data:">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="author" content="Stefan Kreutz">
    $if(description)$
    <meta name="description" content="$description$">
    $else$
    <meta name="description" content="Stefan Kreutz' personal website.">
    $endif$
    <title>$title$ | Stefan Kreutz</title>
    <link rel="stylesheet" href="/css/normalize.css">
    <link rel="stylesheet" href="/css/site.css">
    <link rel="icon" href="data:,">
    <link rel="alternate" type="application/rss+xml" href="/feeds/posts.rss" title="Stefan Kreutz' Blog">
    <link rel="alternate" type="application/atom+xml" href="/feeds/posts.atom" title="Stefan Kreutz' Blog">
  </head>
  <body>
    <header>
      <nav>
	<ul>
	  <li><a href="/" title="Home page">skreutz.com</a></li>
	  <li><a href="/about/">About</a></li>
	  <li><a href="/posts/">Blog</a></li>
	  <li><a href="https://git.skreutz.com">Code</a></li>
	  <li><a href="/contact/">Contact</a></li>
	</ul>
      </nav>
    </header>
    <main>
      $body$
    </main>
    <footer>
      <nav>
	<ul>
	  <li><a href="/privacy/">Privacy</a></li>
	  <li><a href="/feeds/posts.rss">RSS feed</a></li>
	  <li><a href="/feeds/posts.atom">Atom feed</a></li>
	</ul>
      </nav>
    </footer>
  </body>
</html>
Generated by cgit. See skreutz.com for my tech blog and contact information.