taxonomies (categories, tags, year/month/slug), syntax.css und Blog (posts).

This commit is contained in:
Franz Klotsche
2025-11-22 18:50:09 +01:00
parent dc0b5d8cfc
commit 230912cb0c
100 changed files with 4699 additions and 290 deletions

View File

@@ -0,0 +1,13 @@
{{ define "main" }}
<h2>{{ .Title }}</h2>
{{ .Content }}
{{ range .Data.Terms.Alphabetical }}
<p class="tag">
<a href="{{ .Page.Permalink }}">{{ .Page.Title }}</a>
<span class="count">({{ .Count }})</span>
</p>
{{ end }}
{{ end }}

View File

@@ -0,0 +1,9 @@
{{ define "main" }}
<h2>{{ .Title }}</h2>
{{ range .Pages }}
<h4><a href="{{ .RelPermalink }}">{{ .Title }}
</a></h4>
{{ end }}
{{ end }}

View File

@@ -0,0 +1,8 @@
{{ define "main" }}
<h2>{{ .Title }}</h2>
{{ range .Pages }}
{{ partial "post_summary.html" . }}
{{ end }}
{{ end }}

View File

@@ -0,0 +1,13 @@
{{ define "main" }}
<h2>{{ .Title }} #</h2>
{{ .Content }}
{{ range .Data.Terms.Alphabetical }}
<p class="tag">
<a href="{{ .Page.Permalink }}">{{ .Page.Title }}</a>
<span class="count">({{ .Count }})</span>
</p>
{{ end }}
{{ end }}

View File

@@ -0,0 +1,8 @@
{{ define "main" }}
<h2>{{ .Title }}</h2>
{{ range .tags }}
list of description of what a tag is about?
{{ end }}
{{ end }}

View File

@@ -0,0 +1,8 @@
{{ define "main" }}
<h2>{{ .Title }}</h2>
{{ range .Pages }}
{{ partial "post_summary.html" . }}
{{ end }}
{{ end }}