Move some files to a better place, remove some unused file

This commit is contained in:
Gregory Trolliet 2019-09-20 10:56:51 +02:00
parent 0bbda99e9c
commit 89e88cf1e1
27 changed files with 13 additions and 13 deletions

16
layouts/posts/list.html Normal file
View file

@ -0,0 +1,16 @@
{{ define "title" }}
{{ .Title }} · {{ .Site.Title }}
{{ end }}
{{ define "content" }}
<section class="container list">
<h1 class="title">{{ .Site.Params.Posts }}</h1>
<ul>
{{- range .Paginator.Pages -}}
{{- .Render "li" -}}
{{- end -}}
</ul>
{{ partial "pagination.html" . }}
</section>
{{ end }}