summaryrefslogtreecommitdiff
path: root/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'layouts')
-rw-r--r--layouts/404.html4
-rw-r--r--layouts/_default/baseof.html11
-rw-r--r--layouts/_default/list.html6
-rw-r--r--layouts/_default/single.html3
-rw-r--r--layouts/index.html3
-rw-r--r--layouts/partials/head.html20
-rw-r--r--layouts/partials/header.html12
-rw-r--r--layouts/partials/release-wrapper.html3
-rw-r--r--layouts/partials/release.html16
9 files changed, 78 insertions, 0 deletions
diff --git a/layouts/404.html b/layouts/404.html
new file mode 100644
index 0000000..6f307ba
--- /dev/null
+++ b/layouts/404.html
@@ -0,0 +1,4 @@
+{{ define "main" }}
+<h1>(404) The page you requested was not found.</h1>
+<p><a href="/">Go back home</a></p>
+{{ end }}
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
new file mode 100644
index 0000000..a11fb92
--- /dev/null
+++ b/layouts/_default/baseof.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html lang="{{ .Site.LanguageCode }}">
+ {{- partial "head.html" . -}}
+ <body>
+ {{- partial "header.html" . -}}
+
+ <main>
+ {{- block "main" . }}{{- end }}
+ </main>
+ </body>
+</html>
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
new file mode 100644
index 0000000..6d9af48
--- /dev/null
+++ b/layouts/_default/list.html
@@ -0,0 +1,6 @@
+{{ define "main" }}
+ {{ .Content }}
+ {{ range .Pages.ByDate.Reverse }}
+ {{ partial "release-wrapper.html" . }}
+ {{ end }}
+{{ end }}
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
new file mode 100644
index 0000000..84748f6
--- /dev/null
+++ b/layouts/_default/single.html
@@ -0,0 +1,3 @@
+{{ define "main" }}
+ {{ partial "release.html" . }}
+{{ end }}
diff --git a/layouts/index.html b/layouts/index.html
new file mode 100644
index 0000000..e0e8308
--- /dev/null
+++ b/layouts/index.html
@@ -0,0 +1,3 @@
+{{ define "main" }}
+ {{ .Content }}
+{{ end }}
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
new file mode 100644
index 0000000..b0ea134
--- /dev/null
+++ b/layouts/partials/head.html
@@ -0,0 +1,20 @@
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width,initial-scale=1">
+ <meta name="author" content={{ .Site.Author.name }}>
+ <meta name="robots" content="index,follow">
+ <meta name="description" content="{{ .Site.Params.projectTitle }} - {{ .Site.Params.projectDescription }}">
+
+ <!--
+ <meta property="og:title" content="{{ if .Title }}{{ .Title }}{{ if eq .Section "blog" }}{{ if not .IsPage }} Blog Posts{{ end }}{{ end }} - {{if .Site.Params.domain }}{{ .Site.Params.domain }}{{ else }}{{ .Site.Title }}{{ end }}{{ else }}{{ .Site.Title }}{{ end }}">
+ <meta property="og:image" content="{{ .Site.Params.ogImage }}">
+ -->
+ <meta property="og:type" content="website">
+ <meta property="og:site_name" content="{{ .Site.Title }}">
+ <meta property="og:description" content="{{ .Site.Params.projectTitle }} - {{ .Site.Params.projectDescription }}">
+ <meta property="og:url" content="{{ .Permalink }}">
+
+ <link rel="stylesheet" type="text/css" href="/css/styles.css">
+
+ <title>{{ if .Title }}{{ .Title }}{{ if eq .Section "blog" }}{{ if not .IsPage }} Blog Posts{{ end }}{{ end }} | {{if .Site.Params.domain }}{{ .Site.Params.domain }}{{ else }}{{ .Site.Title }}{{ end }}{{ else }}{{ .Site.Title }}{{ end }}</title>
+</head>
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
new file mode 100644
index 0000000..d192e56
--- /dev/null
+++ b/layouts/partials/header.html
@@ -0,0 +1,12 @@
+<div id="site-header">
+ <h1>{{ .Site.Params.projectTitle }}</h1>
+ <p>{{ .Site.Params.projectDescription }}</p>
+ <nav>
+ <a href="/" class="{{ if eq .Kind "home"}}active{{ end }}">Home</a>
+ <a href="/releases" class="{{ if eq .Type "releases"}}active{{ end }}">Releases</a>
+ {{ if .Site.Params.gitURL }}<a href="{{ .Site.Params.gitURL }}">Git</a>{{ end }}
+ {{ range .Site.Params.extraNavLinks }}
+ <a href="{{ index . 1 }}" target="_blank">{{ index . 0 }}</a>
+ {{ end }}
+ </nav>
+</div>
diff --git a/layouts/partials/release-wrapper.html b/layouts/partials/release-wrapper.html
new file mode 100644
index 0000000..ecde519
--- /dev/null
+++ b/layouts/partials/release-wrapper.html
@@ -0,0 +1,3 @@
+<div class="release">
+ {{ partial "release.html" . }}
+</div>
diff --git a/layouts/partials/release.html b/layouts/partials/release.html
new file mode 100644
index 0000000..1c5972a
--- /dev/null
+++ b/layouts/partials/release.html
@@ -0,0 +1,16 @@
+<div class="release-info">
+ <p class="release-header"><a href="{{ .RelPermalink }}">{{ .Params.version_name }}</a></p>
+ <p>
+ Release date:
+ <time datetime="{{ .Date.Format "2006-01-02T15:04:05Z05:30" }}">
+ {{ .Date.Format "2" }}{{ if in (slice 1 21 31) .Date.Day}}st{{ else if in (slice 2 22) .Date.Day}}nd{{ else if in (slice 3 23) .Date.Day}}rd{{ else }}th{{ end }}
+ {{ .Date.Format "January" }}
+ {{ .Date.Format "2006" }}
+ </time>
+ <br/>
+ Release name: {{ .Params.version_name }}
+ <br/>
+ Version number: {{ .Params.version_number }}
+ </p>
+</div>
+{{ .Content }}