about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--layouts/index.html6
-rw-r--r--themes/xmin/layouts/_default/baseof.html4
-rw-r--r--themes/xmin/layouts/_default/list.html11
3 files changed, 12 insertions, 9 deletions
diff --git a/layouts/index.html b/layouts/index.html index 25eaf74..c555aa9 100644 --- a/layouts/index.html +++ b/layouts/index.html
@@ -9,9 +9,9 @@
9 <h2>Latest Posts</h2> 9 <h2>Latest Posts</h2>
10 <ul> 10 <ul>
11 {{- range first 3 .Site.RegularPages }} 11 {{- range first 3 .Site.RegularPages }}
12 <li> 12 <li class="h-entry">
13 <a href="{{ .RelPermalink | strings.TrimRight "/" }}">{{ .Title }}</a> 13 <a class="u-url p-name" href="{{ .RelPermalink | strings.TrimRight "/" }}">{{ .Title }}</a>
14 <time datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "Monday, 2 January 2006" }}</time> 14 <time class="dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "Monday, 2 January 2006" }}</time>
15 </li> 15 </li>
16 {{- end }} 16 {{- end }}
17 </ul> 17 </ul>
diff --git a/themes/xmin/layouts/_default/baseof.html b/themes/xmin/layouts/_default/baseof.html index 6757396..16332b8 100644 --- a/themes/xmin/layouts/_default/baseof.html +++ b/themes/xmin/layouts/_default/baseof.html
@@ -1,9 +1,9 @@
1<!DOCTYPE html> 1<!DOCTYPE html>
2<html lang="{{ .Site.LanguageCode }}"> 2<html lang="{{ .Site.LanguageCode }}" {{- if .Page.IsNode }} class="h-feed"{{ end }}>
3 <head profile="//gmpg.org/xfn/11"> 3 <head profile="//gmpg.org/xfn/11">
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1"> 5 <meta name="viewport" content="width=device-width, initial-scale=1">
6 <title>{{ .Title }} | {{ .Site.Title }}</title> 6 <title {{- if .Page.IsNode }} class="p-name"{{ end }}>{{ .Title }} | {{ .Site.Title }}</title>
7 <link rel="stylesheet" href="{{ "/css/style.css" | relURL }}" /> 7 <link rel="stylesheet" href="{{ "/css/style.css" | relURL }}" />
8 {{ range .AlternativeOutputFormats -}} 8 {{ range .AlternativeOutputFormats -}}
9 {{ printf `<link href="%s" rel="%s" type="%s" title="%s" />` .Permalink .Rel .MediaType.Type $.Site.Title | safeHTML }} 9 {{ printf `<link href="%s" rel="%s" type="%s" title="%s" />` .Permalink .Rel .MediaType.Type $.Site.Title | safeHTML }}
diff --git a/themes/xmin/layouts/_default/list.html b/themes/xmin/layouts/_default/list.html index bf0af50..6780bba 100644 --- a/themes/xmin/layouts/_default/list.html +++ b/themes/xmin/layouts/_default/list.html
@@ -1,18 +1,21 @@
1{{ define "main" }} 1{{ define "main" }}
2 2
3{{if not .IsHome }} 3{{ if not .IsHome }}
4<h1>{{ .Title | markdownify }}</h1> 4<h1>{{ .Title | markdownify }}</h1>
5{{ else }}
6<h1>{{ .Site.Title | markdownify }}</h1>
5{{ end }} 7{{ end }}
6 8
9
7{{ .Content }} 10{{ .Content }}
8 11
9<ul> 12<ul>
10 {{ $pages := .Pages }} 13 {{ $pages := .Pages }}
11 {{ if .IsHome }}{{ $pages = .Site.RegularPages }}{{ end }} 14 {{ if .IsHome }}{{ $pages = .Site.RegularPages }}{{ end }}
12 {{ range (where $pages "Section" "!=" "") }} 15 {{ range (where $pages "Section" "!=" "") }}
13 <li> 16 <li class="h-entry">
14 <span class="date">{{ .Date.Format "2006-01-02" }}</span> 17 <span class="date dt-published">{{ .Date.Format "2006-01-02" }}</span>
15 <a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a> 18 <a class="u-url p-name" href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
16 </li> 19 </li>
17 {{ end }} 20 {{ end }}
18</ul> 21</ul>