Squashed 'themes/xmin/' changes from 982dfb3..aa6eb5a aa6eb5a Make post template microformats-compatible 217445a Support XFN 6365d4b Improve semanticity ccbf84f Remove useless main tag ee3e939 Show tags as article metadata 6394af8 Add support for alternative output formats (e.g. RSS) b85fdab Remove non-semantic hr tags from layout 311e7f3 Make 404 page less shouty 773e2d4 Convert to block-based templates 791259e Alphabetically sort CSS properties f61a5f2 Use ISO8601 date format 6d06143 Remove custom fonts git-subtree-dir: themes/xmin git-subtree-split: aa6eb5a51f3bdbc4e7c621d2a36701ef57ce0143
6 files changed, 58 insertions(+), 20 deletions(-)
M layouts/404.html → layouts/404.html
@@ -1,5 +1,5 @@ -{{ partial "header.html" . }} +{{ define "main" }} -404 NOT FOUND +404 Not Found -{{ partial "footer.html" . }} +{{- end }}
A layouts/_default/baseof.html
@@ -0,0 +1,31 @@ +<!DOCTYPE html> +<html lang="{{ .Site.LanguageCode }}"> + <head profile="//gmpg.org/xfn/11"> + <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 }}" /> + {{ range .AlternativeOutputFormats -}} + {{ printf `<link href="%s" rel="%s" type="%s" title="%s" />` .Permalink .Rel .MediaType.Type $.Site.Title | safeHTML }} + {{ end -}} + </head> + + <body> + <nav> + <ul> + {{ range .Site.Menus.main }} + <li><a href="{{ .URL | relURL }}">{{ .Name }}</a></li> + {{ end }} + </ul> + </nav> + + {{ block "main" . }} + {{ end }} + + <footer> + {{ with .Site.Params.footer }} + {{ . | markdownify }} + {{ end }} + </footer> + </body> +</html>
M layouts/_default/list.html → layouts/_default/list.html
@@ -1,4 +1,4 @@ -{{ partial "header.html" . }} +{{ define "main" }} {{if not .IsHome }} <h1>{{ .Title | markdownify }}</h1>@@ -11,10 +11,10 @@ {{ $pages := .Pages }} {{ if .IsHome }}{{ $pages = .Site.RegularPages }}{{ end }} {{ range (where $pages "Section" "!=" "") }} <li> - <span class="date">{{ .Date.Format "2006/01/02" }}</span> + <span class="date">{{ .Date.Format "2006-01-02" }}</span> <a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a> </li> {{ end }} </ul> -{{ partial "footer.html" . }} +{{- end }}
M layouts/_default/single.html → layouts/_default/single.html
@@ -1,12 +1,20 @@ -{{ partial "header.html" . }} -<div class="article-meta"> -<h1><span class="title">{{ .Title | markdownify }}</span></h1> -{{ with .Params.author }}<h2 class="author">{{ . }}</h2>{{ end }} -{{ if (gt .Params.date 0) }}<h2 class="date">{{ .Date.Format "2006/01/02" }}</h2>{{ end }} -</div> - -<main> -{{ .Content }} -</main> +{{ define "main" }} +<article class="h-entry"> + <header> + <h1><span class="title p-name">{{ .Title | markdownify }}</span></h1> + {{ with .Params.author }}<h2 class="author">{{ . }}</h2>{{ end }} + {{ if (gt .Params.date 0) }}<time class="dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "2006-01-02" }}</time>{{ end }} + <p class="terms"> + {{ range $i := (slice "categories" "tags") }} + {{ with ($.Param $i) }} + {{ $i | title }}: {{ range $k := . }}<a href="{{ relURL (print "/" $i "/" $k | urlize) }}">{{$k}}</a> {{ end }} + {{ end }} + {{ end }} + </p> + </header> -{{ partial "footer.html" . }} + <main class="e-content"> + {{ .Content }} + </main> +</article> +{{- end }}
M layouts/_default/terms.html → layouts/_default/terms.html
@@ -1,4 +1,4 @@ -{{ partial "header.html" . }} +{{ define "main" }} <h1>{{ .Title }}</h1>@@ -10,4 +10,4 @@ </li> {{ end }} </ul> -{{ partial "footer.html" . }} +{{- end }}
M layouts/partials/header.html → layouts/partials/header.html
@@ -5,7 +5,6 @@ <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 }}" /> - <link rel="stylesheet" href="{{ "/css/fonts.css" | relURL }}" /> {{ partial "head_custom.html" . }} </head>