diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000000000000000000000000000000000000..41bb156e8ec22f9d6d25edc9a53aaa5389849f4f --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,18 @@ +{{ define "main" -}} +<div class="posts"> +{{ range .Data.Pages.ByDate -}} +<article class="post"> + <h1 class="post-title"> + <a href="{{ .Permalink }}">{{ .Title }}</a> + </h1> + <time datetime="{{ .Date.Format "2006-01-02T15:04:05Z0700" }}" class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</time> + {{ .Summary }} + {{ if .Truncated }} + <div class="read-more-link"> + <a href="{{ .RelPermalink }}">Read Moreā¦</a> + </div> + {{ end }} +</article> +{{- end }} +</div> +{{- end }}