forked from Bunteshaus/bunteshaus.de
171 lines
5.0 KiB
HTML
171 lines
5.0 KiB
HTML
{{ define "title" }}
|
|
{{ .Title }}
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
<article>
|
|
{{ .Content }}
|
|
</article>
|
|
<h2>{{ "news" | T }}</h2>
|
|
{{ $s := .Site.Params }}
|
|
{{- $posts := where (where .Site.RegularPages "Permalink" "!=" .Permalink) "Type" "in" $s.mainSections }}
|
|
{{- $paginator := slice -}}
|
|
{{- $paginator = .Paginate $posts.ByLastmod.Reverse -}}
|
|
{{- range first 5 $paginator.Pages -}}
|
|
<article class="articlebgcol1 borderrad25"><a href="{{- .Permalink -}}">
|
|
<div id="articletitle">
|
|
<h3>{{- .Title -}}</h3>
|
|
</div>
|
|
<div id="articlecontent">
|
|
<div id="articlemeta">
|
|
{{ if and (ne .Params.when "") (ne .Params.when nil) }}
|
|
<div style="margin-bottom: .4em;">{{ .Params.when }}</div>
|
|
{{ end }}
|
|
{{ if and (ne .Params.price "") (ne .Params.price nil) }}
|
|
{{ if eq .Params.price "free" }}
|
|
<div style="margin-bottom: .4em;">Der Eintritt ist frei.</div>
|
|
{{ else }}
|
|
<div style="margin-bottom: .4em;">Eintritt: {{ .Params.price }}</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
<div id="articleinner">
|
|
<div id="articledata">
|
|
{{- if .Resources.ByType "image" -}}
|
|
{{- $pic := index (.Resources.ByType "image") 0 -}}
|
|
{{ $thumb := "" }}
|
|
{{ if eq .Content "" }}
|
|
<div class="notext">
|
|
{{- $thumb = $pic.Resize "1024x" }}
|
|
{{ else }}
|
|
<div class="text">
|
|
{{- $thumb = $pic.Resize "2048x" }}
|
|
{{ end }}
|
|
|
|
<img src="{{- $thumb.Permalink -}}"/>
|
|
</div>
|
|
{{- end }}
|
|
<div id="articletext">
|
|
{{- if .Params.description -}}
|
|
{{- .Params.description -}}
|
|
{{- else -}}
|
|
{{- .Summary -}}
|
|
{{- end }}
|
|
{{ if .Truncated }}
|
|
<div id="readmore">{{- i18n "readmore" -}}..</div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</a></article>
|
|
{{- end }}
|
|
<div id="pagination">
|
|
<!-- Number of links either side of the current page. -->
|
|
{{ $adjacent_links := 2 }}
|
|
|
|
<!-- $max_links = ($adjacent_links * 2) + 1 -->
|
|
{{ $max_links := (add (mul $adjacent_links 2) 1) }}
|
|
|
|
<!-- $lower_limit = $adjacent_links + 1 -->
|
|
{{ $lower_limit := (add $adjacent_links 1) }}
|
|
|
|
<!-- $upper_limit = $paginator.TotalPages - $adjacent_links -->
|
|
{{ $upper_limit := (sub $paginator.TotalPages $adjacent_links) }}
|
|
|
|
<!-- If there's more than one page. -->
|
|
{{ if gt $paginator.TotalPages 1 }}
|
|
|
|
|
|
<!-- First page. -->
|
|
{{ if ne $paginator.PageNumber 1 }}
|
|
<a class="pagination__link pagination__link--first" href="{{ $paginator.First.URL }}">
|
|
««
|
|
</a>
|
|
{{ end }}
|
|
|
|
<!-- Previous page. -->
|
|
{{ if $paginator.HasPrev }}
|
|
<a href="{{ $paginator.Prev.URL }}" class="pagination__link pagination__link--previous">
|
|
«
|
|
</a>
|
|
{{ end }}
|
|
|
|
<!-- Page numbers. -->
|
|
{{ range $paginator.Pagers }}
|
|
|
|
{{ $.Scratch.Set "page_number_flag" false }}
|
|
|
|
|
|
<!-- Advanced page numbers. -->
|
|
{{ if gt $paginator.TotalPages $max_links }}
|
|
|
|
|
|
<!-- Lower limit pages. -->
|
|
<!-- If the user is on a page which is in the lower limit. -->
|
|
{{ if le $paginator.PageNumber $lower_limit }}
|
|
|
|
<!-- If the current loop page is less than max_links. -->
|
|
{{ if le .PageNumber $max_links }}
|
|
{{ $.Scratch.Set "page_number_flag" true }}
|
|
{{ end }}
|
|
|
|
|
|
<!-- Upper limit pages. -->
|
|
<!-- If the user is on a page which is in the upper limit. -->
|
|
{{ else if ge $paginator.PageNumber $upper_limit }}
|
|
|
|
<!-- If the current loop page is greater than total pages minus $max_links -->
|
|
{{ if gt .PageNumber (sub $paginator.TotalPages $max_links) }}
|
|
{{ $.Scratch.Set "page_number_flag" true }}
|
|
{{ end }}
|
|
|
|
|
|
<!-- Middle pages. -->
|
|
{{ else }}
|
|
|
|
{{ if and ( ge .PageNumber (sub $paginator.PageNumber $adjacent_links) ) ( le .PageNumber (add $paginator.PageNumber $adjacent_links) ) }}
|
|
{{ $.Scratch.Set "page_number_flag" true }}
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
<!-- Simple page numbers. -->
|
|
{{ else }}
|
|
|
|
{{ $.Scratch.Set "page_number_flag" true }}
|
|
|
|
{{ end }}
|
|
|
|
<!-- Output page numbers. -->
|
|
{{ if eq ($.Scratch.Get "page_number_flag") true }}
|
|
<a href="{{ .URL }}" class="pagination__link">
|
|
{{ .PageNumber }}
|
|
</a>
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
<!-- Next page. -->
|
|
{{ if $paginator.HasNext }}
|
|
<a href="{{ $paginator.Next.URL }}" class="pagination__link pagination__link--next">
|
|
»
|
|
</a>
|
|
{{ end }}
|
|
|
|
<!-- Last page. -->
|
|
{{ if ne $paginator.PageNumber $paginator.TotalPages }}
|
|
<a class="pagination__link pagination__link--last" href="{{ $paginator.Last.URL }}">
|
|
»»
|
|
</a>
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
{{ define "sidebar" }}
|
|
{{- partial "sidebar" . }}
|
|
{{ end }} |