start to simplify layouts

This commit is contained in:
Marvin Steadfast 2020-03-12 11:37:20 +01:00
parent c1548db124
commit 9678e8d33a
5 changed files with 37 additions and 34 deletions

View File

@ -8,7 +8,9 @@
{{ end }} {{ end }}
{{ range .Paginator.Pages }} {{ range .Paginator.Pages }}
{{ .Render "summary" }} <article class="h-entry">
{{ partial "article.html" . }}
</article>
{{ end }} {{ end }}
{{ partial "pagination.html" . }} {{ partial "pagination.html" . }}
</main> </main>

View File

@ -1,5 +1,7 @@
{{ define "main" }} {{ define "main" }}
<main> <main>
<article class="h-entry">
{{ partial "article.html" . }} {{ partial "article.html" . }}
</article>
</main> </main>
{{ end }} {{ end }}

View File

@ -1 +0,0 @@
{{ partial "article.html" . }}

View File

@ -2,7 +2,9 @@
<main> <main>
{{ $paginator := .Paginate (where .Site.RegularPages "Type" "in" .Site.Params.mainSections) }} {{ $paginator := .Paginate (where .Site.RegularPages "Type" "in" .Site.Params.mainSections) }}
{{ range $paginator.Pages }} {{ range $paginator.Pages }}
{{ .Render "summary" }} <article class="h-entry">
{{ partial "article.html" . }}
</article>
{{ end }} {{ end }}
{{ partial "pagination.html" . }} {{ partial "pagination.html" . }}
</main> </main>

View File

@ -1,7 +1,6 @@
<article class="h-entry"> <h1 class="p-name"><a class="u-url" href="{{ .Permalink }}">{{ .Title }}</a></h1>
<h1 class="p-name"><a class="u-url" href="{{ .Permalink }}">{{ .Title }}</a></h1> {{ if (isset .Params "date") }}
{{ if (isset .Params "date") }} <p>
<p>
<small> <small>
<time class="dt-published" datetime="{{ .Date.Format "2006-01-02 15:04:05" }}">{{ .Date.Format "02.01.2006 15:04" }}</time> <time class="dt-published" datetime="{{ .Date.Format "2006-01-02 15:04:05" }}">{{ .Date.Format "02.01.2006 15:04" }}</time>
<a rel="author" class="p-author h-card" href="{{ .Site.BaseURL }}">{{ .Site.Params.AuthorName }}</a> <a rel="author" class="p-author h-card" href="{{ .Site.BaseURL }}">{{ .Site.Params.AuthorName }}</a>
@ -11,9 +10,8 @@
<a class="p-category" href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a> <a class="p-category" href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
{{ end }} {{ end }}
</small> </small>
{{ end }} {{ end }}
</p> </p>
<section class="e-content"> <section class="e-content">
{{ .Content}} {{ .Content}}
</section> </section>
</article>