Update: contact page added, about page removed

This commit is contained in:
hyzen
2026-02-28 22:48:43 +05:30
parent ed28ebb86d
commit 2d284e5394
57 changed files with 153 additions and 856 deletions

View File

@@ -11,7 +11,7 @@
Create deterministic summary output for styling.
See https://github.com/gohugoio/hugo/issues/8910
*/ -}}
<p class="summary">{{ . | plainify | htmlUnescape | chomp }}</p>
<p class="summary">{{ . | plainify | htmlUnescape | chomp | truncate 150 }}</p>
{{- end }}
{{ end }}
<nav class="paginator">

View File

@@ -1 +1 @@
{{ define "main" }} <div class="breadcrumbs"> You are here: <a href="{{ "/" | relURL }}">Home</a> / <span>{{ .Title }}</span> </div> <section class="term-list"> {{ range .Data.Terms.Alphabetical }} <h2 class="term-list__item"> <a class="term-list__link" href="{{ .Page.RelPermalink }}"> {{ .Page.Title }} <sup>{{ .Count }}</sup> </a> </h2> {{ end }} </section> {{ end }}
{{ define "main" }} <h1>Categories</h1> <section class="term-list"> {{ range .Data.Terms.Alphabetical }} <h2 class="term-list__item"> <a class="term-list__link" href="{{ .Page.RelPermalink }}"> {{ .Page.Title }} <sup>{{ .Count }}</sup> </a> </h2> {{ end }} </section> {{ end }}