summaryrefslogtreecommitdiffstats
path: root/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'layouts')
-rw-r--r--layouts/baseof.html19
-rw-r--r--layouts/home.html3
-rw-r--r--layouts/list.html21
-rw-r--r--layouts/page.html11
-rw-r--r--layouts/term.html7
5 files changed, 0 insertions, 61 deletions
diff --git a/layouts/baseof.html b/layouts/baseof.html
deleted file mode 100644
index e5fd07d..0000000
--- a/layouts/baseof.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html lang="{{ site.Language.LanguageCode }}">
-<head>
- {{ partial "head.html" . }}
-</head>
-<body>
- <div class="content">
- <header>
- {{ partial "header.html" . }}
- </header>
- <main>
- {{ block "main" . }}{{ end }}
- </main>
- <footer>
- {{ partial "footer.html" . }}
- </footer>
- </div>
-</body>
-</html>
diff --git a/layouts/home.html b/layouts/home.html
deleted file mode 100644
index e0e8308..0000000
--- a/layouts/home.html
+++ /dev/null
@@ -1,3 +0,0 @@
-{{ define "main" }}
- {{ .Content }}
-{{ end }}
diff --git a/layouts/list.html b/layouts/list.html
deleted file mode 100644
index cc6c7be..0000000
--- a/layouts/list.html
+++ /dev/null
@@ -1,21 +0,0 @@
-{{ define "main" }}
- <h1>{{ .Title }}</h1>
- <table>
- <thead>
- <tr>
- <th>Date</th>
- <th>Title</th>
- </tr>
- </thead>
- <tbody>
- {{ range .Pages }}
- {{- $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" -}}
- {{- $dateHuman := .Date | time.Format "2006-01-02" -}}
- <tr>
- <td><time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time></td>
- <td><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></td>
- </tr>
- {{ end }}
- </tbody>
- </table>
-{{ end }}
diff --git a/layouts/page.html b/layouts/page.html
deleted file mode 100644
index 8b8eb16..0000000
--- a/layouts/page.html
+++ /dev/null
@@ -1,11 +0,0 @@
-{{ define "main" }}
- {{- $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" -}}
- {{- $dateHuman := .Date | time.Format "2006-01-02" -}}
- <div>
- <h1 class="title">{{ .Title }}</h1>
- <time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
- </div>
-
- {{ .Content }}
- {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
-{{ end }}
diff --git a/layouts/term.html b/layouts/term.html
deleted file mode 100644
index c2e7875..0000000
--- a/layouts/term.html
+++ /dev/null
@@ -1,7 +0,0 @@
-{{ define "main" }}
- <h1>{{ .Title }}</h1>
- {{ .Content }}
- {{ range .Pages }}
- <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
- {{ end }}
-{{ end }}