Update hyde
Alan Pearce alan@alanpearce.eu
Sun, 17 Jun 2018 19:40:34 +0200
4 files changed, 37 insertions(+), 63 deletions(-)
M config.toml → config.toml
@@ -4,12 +4,12 @@ title = "Alan Pearce" theme = "hyde" pygmentsUseClasses = true pygmentsCodeFences = true -copyright = "Licensed under a Creative Commons Attribution 4.0 International License." [Params] Description = "Developer, Emacser" themeColor = "theme-base-0b" layoutReverse = true +copyright = "Licensed under a Creative Commons Attribution 4.0 International License." [Params.GPG] fingerprint = "B9E4 E797 2F41 CD50 0FB9 CD05 AE86 25A6 3F6F 8FD5" @@ -19,9 +19,6 @@ [author] name = "Alan Pearce" image = "/img/me-thumb.jpg" -[[menu.main]] - name = "Home" - URL = "/" [[menu.main]] name = "Posts" URL = "/post/"
M layouts/index.html → layouts/index.html
@@ -1,40 +1,35 @@-{{ partial "head.html" . }} -<body class="{{ .Site.Params.themeColor }} {{if .Site.Params.layoutReverse}}layout-reverse{{end}}"> - <main class="content container" role="main"> - <section class="about"> - {{ .Content }} - </section> - <section class="recent"> - <h2>Recent Posts</h2> - <ul class="posts"> - {{ range first 3 .Data.Pages }} - <li> - <a class="post-title" href="{{ .RelPermalink | replaceRE "/$" "" }}">{{ .Title }}</a> - <time class="post-date" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "Monday, 2 January 2006" }}</time> - </li> - {{ end }} - </ul> - </section> - <section class="contact"> - <h2>Contact</h2> - <ul> - {{ range .Site.Menus.contact }} - <li> - {{ if hasPrefix .URL "mailto:" }} - <a href="{{ .URL }}" class="u-email email" rel="me">{{ .Name }}</a> - {{ else }} - <a href="{{ .URL }}" class="u-url url" rel="me">{{ .Name }}</a> - {{ end }} - </li> - {{ end }} - </ul> - </section> - <footer> - {{ with .Site.Params.GPG }} - GPG Key: <a href="{{ .url }}" rel="pgpkey">{{ .fingerprint }}</a> - {{ end }} - </footer> - </main> - {{ partial "sidebar.html" . }} -</body> -</html> +{{ define "main" -}} +<section class="about"> + {{ .Content }} + </section> + <section class="recent"> + <h2>Recent Posts</h2> + <ul class="posts"> + {{- range first 3 .Data.Pages }} + <li> + <a class="post-title" href="{{ .RelPermalink | replaceRE "/$" "" }}">{{ .Title }}</a> + <time class="post-date" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "Monday, 2 January 2006" }}</time> + </li> + {{- end }} + </ul> + </section> + <section class="contact"> + <h2>Contact</h2> + <ul> + {{- range .Site.Menus.contact }} + <li> + {{- if hasPrefix .URL "mailto:" }} + <a href="{{ .URL }}" class="u-email email" rel="me">{{ .Name }}</a> + {{- else }} + <a href="{{ .URL }}" class="u-url url" rel="me">{{ .Name }}</a> + {{- end }} + </li> + {{- end }} + </ul> + </section> + <footer> + {{- with .Site.Params.GPG }} + GPG Key: <a href="{{ .url }}" rel="pgpkey">{{ .fingerprint }}</a> + {{- end }} + </footer> +{{- end }}
D layouts/partials/head.html
@@ -1,19 +0,0 @@-<!DOCTYPE html> -<html lang="en-GB"> - <head> - <meta charset="UTF-8"> - <meta name="viewport" content="width=device-width,initial-scale=1"> - - {{ if .IsHome }} - <title>{{ .Site.Title }}</title> - {{ else }} - <title>{{ .Title }} · {{ .Site.Title }}</title> - {{ end }} - - <link rel="stylesheet" href="/css/poole.css"> - <link rel="stylesheet" href="/css/syntax.css"> - <link rel="stylesheet" href="/css/hyde.css"> - <link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}"> - <link href="{{ if .IsPage }}{{ .Permalink | replaceRE "/$" "" }}{{ else }}{{ .Permalink }}{{ end }}" rel="canonical"> - <link href="{{ .Site.Params.GPG.url | absURL }}" rel="pgpkey"> - </head>
A layouts/partials/hook_head_end.html
@@ -0,0 +1,1 @@+<link href="{{ if .IsPage }}{{ .Permalink | replaceRE "/$" "" }}{{ else }}{{ .Permalink }}{{ end }}" rel="canonical">