diff options
author | Matt Kohls <mattkohls13@gmail.com> | 2019-12-18 01:04:15 -0500 |
---|---|---|
committer | Matt Kohls <mattkohls13@gmail.com> | 2019-12-18 01:04:15 -0500 |
commit | 6c53b50ec3afaabbe3f09c6e838baf63e17499b1 (patch) | |
tree | 8044f943886c78db68ff4c860ba8f5b918bebb28 /layouts/_default | |
download | simplesource-6c53b50ec3afaabbe3f09c6e838baf63e17499b1.tar.gz simplesource-6c53b50ec3afaabbe3f09c6e838baf63e17499b1.tar.bz2 simplesource-6c53b50ec3afaabbe3f09c6e838baf63e17499b1.zip |
Mostly working initial stuff
TODO:
CSS needs to be defined
Index page lists about page when it shouldn't
Diffstat (limited to 'layouts/_default')
-rw-r--r-- | layouts/_default/list.html | 14 | ||||
-rw-r--r-- | layouts/_default/rss.xml | 26 | ||||
-rw-r--r-- | layouts/_default/single.html | 19 | ||||
-rw-r--r-- | layouts/_default/terms.html | 15 |
4 files changed, 74 insertions, 0 deletions
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" . }} |