First draft

This commit is contained in:
2023-06-14 21:16:37 +02:00
parent ff4a8ce413
commit e8a8269c6c
102 changed files with 5407 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{{ define "main" }}
<div class="container">
<div class="section">
<h2 class="archive-title">Category: {{ .Title }}</h2>
</div>
</div>
<div class="each-category column is-centered">
{{ range .Paginator.Pages}}
<article class="archive-item">
<a href="{{ .Permalink }}" class="archive-item-link hover-underline-animation">{{ .Title }}</a>
<span class="archive-item-date">
{{ .Date.Format "January 2, 2006" }}
</span>
</article>
{{ end }}
</div>
{{ end }}

View File

@ -0,0 +1,33 @@
{{ define "main" }}
<div class="container">
<div class="section">
<div class="content">
<h1>{{ .Title }}</h1>
{{ .Content }}
</div>
</div>
</div>
<section class="card-container" >
{{ range .Data.Terms.ByCount }}
<div class="card">
<a href="{{ .Page.Permalink }}">
</a>
<div class="card-content has-text-centered">
<div>
<a class="title is-5 is-size-6-mobile" href="{{ .Page.Permalink }}">{{ .Page.Title }}</a>
{{ $pageCount := len .Pages }}
<strong>
<sup style="font-size:16px;">{{ $pageCount }}</sup>
</strong>
</div>
</div>
</div>
{{ end }}
</section>
{{ end }}