From 07c1d9f590e8de064e9b527c3d425eb898f7e59e Mon Sep 17 00:00:00 2001 From: Stefan Kreutz Date: Mon, 6 Jul 2020 22:40:21 +0200 Subject: Add initial version This commit adds the first published version of the website including the first blog post, Unix Domain Socket Forwarding with OpenSSH. --- templates/default.html | 43 +++++++++++++++++++++++++++++++++++++++++++ templates/direct.html | 2 ++ templates/post.html | 8 ++++++++ templates/posts.html | 10 ++++++++++ templates/sitemap.xml | 23 +++++++++++++++++++++++ 5 files changed, 86 insertions(+) create mode 100644 templates/default.html create mode 100644 templates/direct.html create mode 100644 templates/post.html create mode 100644 templates/posts.html create mode 100644 templates/sitemap.xml (limited to 'templates') 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 @@ + + + + + + + + $if(description)$ + + $else$ + + $endif$ + skreutz.com - $title$ + + + + + + +
+ +
+
+ $body$ +
+ + + diff --git a/templates/direct.html b/templates/direct.html new file mode 100644 index 0000000..a16a6f8 --- /dev/null +++ b/templates/direct.html @@ -0,0 +1,2 @@ +

$title$

+$body$ diff --git a/templates/post.html b/templates/post.html new file mode 100644 index 0000000..726fa77 --- /dev/null +++ b/templates/post.html @@ -0,0 +1,8 @@ +
+

$title$

+
+ Posted on +
+ $body$ +
+
diff --git a/templates/posts.html b/templates/posts.html new file mode 100644 index 0000000..b35e0e7 --- /dev/null +++ b/templates/posts.html @@ -0,0 +1,10 @@ +

Blog

+
    + $for(posts)$ +
  1. + $title$ + +

    $description$

    +
  2. + $endfor$ +
diff --git a/templates/sitemap.xml b/templates/sitemap.xml new file mode 100644 index 0000000..c95874b --- /dev/null +++ b/templates/sitemap.xml @@ -0,0 +1,23 @@ + + + + $root$ + daily + 1.0 + + $for(pages)$ + + $root$$url$ + $if(updated)$$updated$$else$$if(date)$$date$$endif$$endif$ + weekly + 0.8 + + $endfor$ + -- cgit v1.2.3