|
|
@@ -0,0 +1,80 @@ |
|
|
|
<!DOCTYPE html> |
|
|
|
<html lang="de"> |
|
|
|
|
|
|
|
{{ partial "head.html" . }} |
|
|
|
|
|
|
|
<body> |
|
|
|
|
|
|
|
{{ partial "nav.html" . }} |
|
|
|
|
|
|
|
<header class="header-section "> |
|
|
|
<div class="intro-header no-img"> |
|
|
|
<div class="container"> |
|
|
|
<div class="row"> |
|
|
|
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> |
|
|
|
<div class="page-heading"> |
|
|
|
<!-- <h1>{{.Site.Title}}</h1> --> |
|
|
|
{{if .Site.Params.subtitle}} |
|
|
|
<hr class="small"> |
|
|
|
<span class="page-subheading">{{.Site.Params.subtitle}}</span> |
|
|
|
{{end}} |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</header> |
|
|
|
|
|
|
|
|
|
|
|
<div role="main" class="container"> |
|
|
|
<div class="row"> |
|
|
|
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> |
|
|
|
<div class="posts-list"> |
|
|
|
{{ $pag := .Paginate (where .Data.Pages "Type" "post") }} |
|
|
|
{{ range $pag.Pages }} |
|
|
|
<article class="post-preview"> |
|
|
|
<a href="{{ .Permalink }}"> |
|
|
|
<h1 class="post-title">{{ .Title }}</h1> |
|
|
|
|
|
|
|
{{ if .Params.subtitle }} |
|
|
|
<h3 class="post-subtitle"> |
|
|
|
{{ .Params.subtitle }} |
|
|
|
</h3> |
|
|
|
{{ end }} |
|
|
|
</a> |
|
|
|
|
|
|
|
<p class="post-meta"> |
|
|
|
Veröffentlicht am {{ .Date.Format "2.1.2006" }} | von {{ .Site.Author.handle }} |
|
|
|
</p> |
|
|
|
|
|
|
|
<div class="post-entry"> |
|
|
|
<p>{{ .Summary }}</p> |
|
|
|
<a href="{{ .Permalink }}" class="post-read-more">[MEHR]</a> |
|
|
|
</div> |
|
|
|
|
|
|
|
</article> |
|
|
|
{{ end }} |
|
|
|
</div> |
|
|
|
|
|
|
|
{{ if or (.Paginator.HasPrev) (.Paginator.HasNext) }} |
|
|
|
<ul class="pager main-pager"> |
|
|
|
{{ if .Paginator.HasPrev }} |
|
|
|
<li class="previous"> |
|
|
|
<a href="{{ .URL }}page/{{ .Paginator.Prev.PageNumber }}">← Newer Posts</a> |
|
|
|
</li> |
|
|
|
{{ end }} |
|
|
|
{{ if .Paginator.HasNext }} |
|
|
|
<li class="next"> |
|
|
|
<a href="{{ .URL }}page/{{ .Paginator.Next.PageNumber }}">Older Posts →</a> |
|
|
|
</li> |
|
|
|
{{ end }} |
|
|
|
</ul> |
|
|
|
{{ end }} |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
{{ partial "footer.html" . }} |
|
|
|
|
|
|
|
</body> |
|
|
|
</html> |