diff options
Diffstat (limited to 'layouts/index.html')
-rw-r--r-- | layouts/index.html | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/layouts/index.html b/layouts/index.html deleted file mode 100644 index 8a7cffa..0000000 --- a/layouts/index.html +++ /dev/null @@ -1,22 +0,0 @@ -{{ partial "head" . }} - -<header> - <a href="/"><img id="logo" src="{{ .Site.Params.logo }}" /></a> - <h1>{{ .Title }}</h1> -</header> -<main> -<p>{{ .Site.Params.intro }}</p> -<div class="archive"> - <h2>Archive</h2> - {{ range (where (where .Site.RegularPages "Params.hidden" "ne" "true") "Type" "post").GroupByDate "2006" }} - <h3 class="archive-title">{{ .Key }}</h3> - {{ range .Pages }} - <article class="list-item"> - <a href="{{ .RelPermalink }}" class="list-item-link">{{ .Title }}</a> - <span class="list-item-date">{{ .Date.Format "January 2, 2006" }}</span> - </article> - {{ end }} - {{ end }} -</div> -</main> -{{ partial "footer" . }} |