diff options
author | Stefan Kreutz <mail@skreutz.com> | 2020-07-06 22:40:21 +0200 |
---|---|---|
committer | Stefan Kreutz <mail@skreutz.com> | 2020-07-06 22:40:21 +0200 |
commit | 07c1d9f590e8de064e9b527c3d425eb898f7e59e (patch) | |
tree | 38307806182a481ca534e853a8ba2c3db9596a0c /templates/default.html | |
download | blog-07c1d9f590e8de064e9b527c3d425eb898f7e59e.tar |
Add initial version
This commit adds the first published version of the website including
the first blog post, Unix Domain Socket Forwarding with OpenSSH.
Diffstat (limited to 'templates/default.html')
-rw-r--r-- | templates/default.html | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/templates/default.html b/templates/default.html new file mode 100644 index 0000000..739995b --- /dev/null +++ b/templates/default.html @@ -0,0 +1,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> |