Добавить раздел База знаний (kb) на верхнем уровне

This commit is contained in:
Агальцов Антон
2026-04-26 20:50:30 +03:00
parent dd67d2c2ec
commit 3fe8a91622
4 changed files with 55 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{{ define "main" }}
<div class="article-content">
<h1>{{ .Title }}</h1>
{{ partial "source-path.html" . }}
{{ if .Params.tags }}
<div class="tags mb-3">
{{ range .Params.tags }}
<a href="{{ "/tags/" | relURL }}{{ . | urlize }}/" class="tag">{{ . }}</a>
{{ end }}
</div>
{{ end }}
{{ .Content }}
</div>
{{ end }}