Tags, rss, sitemap and robots.txt

This commit is contained in:
Hazem Krimi
2023-11-17 18:49:54 +01:00
parent 5ea292e909
commit 4598a12887
11 changed files with 92 additions and 15 deletions
+16 -4
View File
@@ -5,12 +5,24 @@
<nav aria-label="breadcrumb" class="breadcrumb">
<ol>
{{ range .Ancestors.Reverse }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
{{ if (eq .Title "Tags") }}
<li>
<a href="{{ urls.JoinPath .Site.BaseURL "blog" }}">Blog</a>
</li>
{{ else }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
{{ end }}
{{ end }}
<li class="active">
<a aria-current="page" href="{{ .Permalink }}">{{ .Title }}</a>
<a
aria-current="page"
class="{{ if (eq .Parent.Title "Tags") }}tag{{ end }}"
href="{{ .Permalink }}"
>
{{ if (eq .Parent.Title "Tags") }}#{{ end }}{{ .Title }}
</a>
</li>
</ol>
</nav>