From 3a5fabf3c6f4f60a64885a52c76ba6dab8b71099 Mon Sep 17 00:00:00 2001 From: Horus Date: Thu, 20 Oct 2016 18:08:36 +0200 Subject: Initial commit. --- layouts/404.html | 9 + layouts/index.html | 24 ++ layouts/page/list.html | 7 + layouts/page/single.html | 7 + layouts/partials/css.tmpl | 661 ++++++++++++++++++++++++++++++++++++++++++ layouts/partials/favicon.tmpl | 2 + layouts/partials/footer.tmpl | 3 + layouts/partials/header.tmpl | 10 + layouts/projects.html | 39 +++ 9 files changed, 762 insertions(+) create mode 100644 layouts/404.html create mode 100644 layouts/index.html create mode 100644 layouts/page/list.html create mode 100644 layouts/page/single.html create mode 100644 layouts/partials/css.tmpl create mode 100644 layouts/partials/favicon.tmpl create mode 100644 layouts/partials/footer.tmpl create mode 100644 layouts/partials/header.tmpl create mode 100644 layouts/projects.html (limited to 'layouts') diff --git a/layouts/404.html b/layouts/404.html new file mode 100644 index 0000000..e831189 --- /dev/null +++ b/layouts/404.html @@ -0,0 +1,9 @@ +{{partial "header.tmpl" .}} +

404 - not found


+ +{{partial "footer.tmpl"}} + diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..76d78a1 --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,24 @@ +{{partial "header.tmpl" .}} +

welcome


+ +{{partial "footer.tmpl"}} + diff --git a/layouts/page/list.html b/layouts/page/list.html new file mode 100644 index 0000000..32d2367 --- /dev/null +++ b/layouts/page/list.html @@ -0,0 +1,7 @@ +{{partial "header.tmpl" .}} +

{{.Title}}


+ +{{partial "footer.tmpl"}} + diff --git a/layouts/page/single.html b/layouts/page/single.html new file mode 100644 index 0000000..32d2367 --- /dev/null +++ b/layouts/page/single.html @@ -0,0 +1,7 @@ +{{partial "header.tmpl" .}} +

{{.Title}}


+ +{{partial "footer.tmpl"}} + diff --git a/layouts/partials/css.tmpl b/layouts/partials/css.tmpl new file mode 100644 index 0000000..ba15e18 --- /dev/null +++ b/layouts/partials/css.tmpl @@ -0,0 +1,661 @@ + + + diff --git a/layouts/partials/favicon.tmpl b/layouts/partials/favicon.tmpl new file mode 100644 index 0000000..a542acd --- /dev/null +++ b/layouts/partials/favicon.tmpl @@ -0,0 +1,2 @@ + + diff --git a/layouts/partials/footer.tmpl b/layouts/partials/footer.tmpl new file mode 100644 index 0000000..69aae56 --- /dev/null +++ b/layouts/partials/footer.tmpl @@ -0,0 +1,3 @@ + + + diff --git a/layouts/partials/header.tmpl b/layouts/partials/header.tmpl new file mode 100644 index 0000000..47ee061 --- /dev/null +++ b/layouts/partials/header.tmpl @@ -0,0 +1,10 @@ + + + + + +moehring | {{.Title}} +{{partial "favicon.tmpl"}} +{{partial "css.tmpl"}} + + diff --git a/layouts/projects.html b/layouts/projects.html new file mode 100644 index 0000000..103c7e0 --- /dev/null +++ b/layouts/projects.html @@ -0,0 +1,39 @@ + +{{partial "header.tmpl" "projects"}} +

projects


+ +{{partial "footer.tmpl"}} -- cgit v1.2.3