aboutsummaryrefslogtreecommitdiffstats
path: root/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'layouts')
-rw-r--r--layouts/404.html9
-rw-r--r--layouts/_default/list.html14
-rw-r--r--layouts/_default/rss.xml26
-rw-r--r--layouts/_default/single.html19
-rw-r--r--layouts/_default/terms.html15
-rw-r--r--layouts/index.html13
-rw-r--r--layouts/partials/footer.html11
-rw-r--r--layouts/partials/header.html25
8 files changed, 132 insertions, 0 deletions
diff --git a/layouts/404.html b/layouts/404.html
new file mode 100644
index 0000000..5268d0c
--- /dev/null
+++ b/layouts/404.html
@@ -0,0 +1,9 @@
+{{ partial "header.html" . }}
+<div class="content">
+ <h2>404 Resource Not Found</h2>
+ <p>
+ The thing you are looking for can not be found.
+ <a href="{{ "/" | relURL }}">Home</a>
+ </p>
+</div>
+{{ partial "footer.html" . }}
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
new file mode 100644
index 0000000..ffe85da
--- /dev/null
+++ b/layouts/_default/list.html
@@ -0,0 +1,14 @@
+{{ partial "header.html" . }}
+<div class="content">
+ {{ if not .IsHome }}
+ <h1>{{ .Title | markdownify }}</h1>
+ {{ end }}
+ <ul>
+ {{ range (where .Data.Pages "Section" "!=" "") }}
+ <li>{{ .Date.Format "January 2, 2006" }}
+ <a href="{{ .URL }}">{{ .Title | markdownify }}</a>
+ </li>
+ {{ end }}
+ </ul>
+</div>
+{{ partial "footer.html" . }}
diff --git a/layouts/_default/rss.xml b/layouts/_default/rss.xml
new file mode 100644
index 0000000..f907888
--- /dev/null
+++ b/layouts/_default/rss.xml
@@ -0,0 +1,26 @@
+<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
+ <channel>
+ <title>{{ .Site.Title }}</title>
+ <link>{{ .Permalink }}</link>
+ <description>Recent content on {{ .Site.Title }}</description>
+ <generator>Hugo -- gohugo.io</generator>{{ with .Site.LanguageCode }}
+ <language>{{.}}</language>{{end}}{{ with .Site.Author.email }}
+ <managingEditor>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}{{ with .Site.Author.email }}
+ <webMaster>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</webMaster>{{end}}{{ with .Site.Copyright }}
+ <copyright>{{.}}</copyright>{{end}}{{ if not .Date.IsZero }}
+ <lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>{{ end }}
+ {{ with .OutputFormats.Get "RSS" }}
+ {{ printf "<atom:link href=%q rel=\"self\" type=%q />" .Permalink .MediaType | safeHTML }}
+ {{ end }}
+ {{ range .Pages }}
+ <item>
+ <title>{{ .Title }}</title>
+ <link>{{ .Permalink }}</link>
+ <pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
+ {{ with .Site.Author.email }}<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>{{end}}
+ <guid>{{ .Permalink }}</guid>
+ <description>{{ .Content | html }}</description>
+ </item>
+ {{ end }}
+ </channel>
+</rss>
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
new file mode 100644
index 0000000..cb76f1a
--- /dev/null
+++ b/layouts/_default/single.html
@@ -0,0 +1,19 @@
+{{ partial "header.html" . }}
+<main>
+ <header class="header-inline">
+ <div class="heading">
+ <div class="info">
+ <div class="content">
+ {{ if (gt .Params.date 0) }} {{ .Date.Format "January 2, 2006" }} {{ end }} {{ if (gt .Params.author 0) }} by {{ with .Params.author }} {{ . }} {{ end }} {{ end }}
+ </div>
+ </div>
+ <div class="content">
+ <h1>{{ .Title | markdownify }}</h1>
+ </div>
+ </div>
+ </header>
+ <div class="content">
+ {{ .Content }}
+ </div>
+</main>
+{{ partial "footer.html" . }}
diff --git a/layouts/_default/terms.html b/layouts/_default/terms.html
new file mode 100644
index 0000000..20347df
--- /dev/null
+++ b/layouts/_default/terms.html
@@ -0,0 +1,15 @@
+{{ partial "header.html" . }}
+<div class="content">
+ {{ if not .IsHome }}
+ <h1>{{ .Title | markdownify }}</h1>
+ {{ end }}
+ <ul>
+ {{ range $key, $value := .Data.Terms }}
+ <li>
+ <a href="{{ (print "/" $.Data.Plural "/" $key | urlize) | relURL }}">{{ $key }}</a>
+ ({{ len $value }})
+ </li>
+ {{ end }}
+ </ul>
+</div>
+{{ partial "footer.html" . }}
diff --git a/layouts/index.html b/layouts/index.html
new file mode 100644
index 0000000..624f3a0
--- /dev/null
+++ b/layouts/index.html
@@ -0,0 +1,13 @@
+{{ partial "header.html" . }}
+<div class="content">
+ {{ .Content }}
+
+ <ul>
+ {{ range .Site.RegularPages }}
+ <li>{{ .Date.Format "January 2, 2006" }}
+ <a href="{{ .URL }}">{{ .Title | markdownify }}</a>
+ </li>
+ {{ end }}
+ </ul>
+</div>
+{{ partial "footer.html" . }}
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
new file mode 100644
index 0000000..e420ffc
--- /dev/null
+++ b/layouts/partials/footer.html
@@ -0,0 +1,11 @@
+ <footer>
+ <div class="box">
+ <div class="content">
+ {{ with .Site.Params.footer }}
+ {{ . | markdownify }}
+ {{ end }}
+ </div>
+ </div>
+ </footer>
+ </body>
+</html>
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
new file mode 100644
index 0000000..b7422da
--- /dev/null
+++ b/layouts/partials/header.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html lang="{{ .Site.LanguageCode }}">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>{{ .Title }} | {{ .Site.Title }}</title>
+ <link rel="stylesheet" href="{{ "/css/style.css" | relURL }}">
+ </head>
+
+ <body>
+ <div>
+ <nav>
+ {{ $title := .Site.Title }}
+ {{ range $menuItem := .Site.Menus.main }}
+ {{ if eq $menuItem.Name "Home" }}
+ <a class="brand" href="{{ $menuItem.URL | relURL }}">
+ {{ $title }}
+ {{ else }}
+ <a href="{{ $menuItem.URL | relURL }}">
+ {{ $menuItem.Name }}
+ {{ end }}
+ </a>
+ {{ end }}
+ </nav>
+ </div>