diff --git a/layouts/index.html b/layouts/index.html deleted file mode 100644 index 41bb156e8ec22f9d6d25edc9a53aaa5389849f4f..0000000000000000000000000000000000000000 --- a/layouts/index.html +++ /dev/null @@ -1,18 +0,0 @@ -{{ 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 }}