daily update 2026-03-29

This commit is contained in:
Агальцов Антон
2026-03-30 00:02:10 +03:00
commit 690abf379c
145 changed files with 14399 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{{ define "main" }}
<div class="article-content">
<h1>{{ .Title }}</h1>
<p class="diary-date">{{ .Date.Format "02.01.2006" }}</p>
{{ .Content }}
{{ if .Params.tags }}
<div class="tags">
{{ range .Params.tags }}
<a href="{{ "/tags/" | relURL }}{{ . | urlize }}/" class="tag">{{ . }}</a>
{{ end }}
</div>
{{ end }}
</div>
{{ end }}