You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

38 lines
1.4 KiB

{{ define "main" }}
{{ partial "navigation-bar.html" ( dict "context" . "items" (slice "/" ) )}}
<article class="measure-wide center pa3 pa4-ns nested-copy-line-height nested-img">
<section class="cf pv3 pv4-l f4 tc-l measure-wide lh-copy mid-gray">
<div class="cf pv3 pv4-l f4 tc-l measure-wide lh-copy mid-gray">
<p>Events nach Jahren. Die Pulsbar zeigt die relative Anzahl pro Monat. Navigiere weiter in die Posts eines Jahres.</p>
</div>
</section>
<div class="w-100">
{{ range .Data.Terms.Alphabetical.Reverse }}
<section class="mt1">
<div class="flex flex-column bg-white ba b--white bw2 ">
<a href="{{ .Page.Permalink }}" class=" link black dim ">
<div class="flex flex-box justify-between bg-blue white">
<div class="flex f1 pl2">
{{ .Page.Title }}
</div>
<div class="f5 pr2 pt4 ">
{{ T "tours" (len .Pages) }}
</div>
</div>
</a>
<div class="flex pt1">
{{ partial "years-summary.html" (dict "page" .Page "param_title" .Page.Title "pages" .Pages) }}
</div>
<div id="{{ .Page.Title }}" class="flex justify-center pt1">
<div style="color:transparent">:</div>
</div>
</div>
</section>
{{ end }}
</div>
</article>
{{ end }}