all repos — homestead @ e9db7f1126de408c961bddb71eff122c8bffa490

Code for my website

Merge commit '160efa7abfede21e42e32b14c4d37a82b7184c79'

Alan Pearce
commit

e9db7f1126de408c961bddb71eff122c8bffa490

parent

1cc014c44be6866e9c394a44b923d9448af6766b

1 file changed, 3 insertions(+), 3 deletions(-)

changed files
M themes/xmin/layouts/_default/list.htmlthemes/xmin/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 }}