summaryrefslogtreecommitdiff
path: root/templates/default.html
blob: 739995b5e4343fc2f3679fb77582d37c586a8992 (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
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <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>skreutz.com - $title$</title>
    <link rel="stylesheet" href="/css/normalize.css">
    <link rel="stylesheet" href="/css/site.css">
    <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="/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.