From: Danilo M. Date: Fri, 17 Apr 2026 08:45:45 +0000 (+0200) Subject: feat: add custom repository page layout with repo cards grid X-Git-Tag: release_22042026-1342~151 X-Git-Url: https://git.danix.xyz/?a=commitdiff_plain;h=0089bcff60f425e3ad4331e11539f2584833badb;p=danix.xyz-2.git feat: add custom repository page layout with repo cards grid --- diff --git a/themes/danix-xyz-hacker/layouts/repository/single.html b/themes/danix-xyz-hacker/layouts/repository/single.html new file mode 100644 index 0000000..aa6805e --- /dev/null +++ b/themes/danix-xyz-hacker/layouts/repository/single.html @@ -0,0 +1,69 @@ +{{ define "main" }} +
+
+ +
+

+ {{ i18n "repositoryTitle" }} +

+

+ {{ i18n "repositorySubtitle" }} +

+
+ + +
+ {{ .Content }} +
+ + +
+

{{ i18n "githubReposTitle" }}

+ +
+ {{ range $.Site.Data.repos.repos }} +
+ + {{ .name }} + + +
+

{{ .name }}

+ +

+ {{ i18n .description_key }} +

+ + + {{ if .tags }} +
+ {{ range .tags }} + + {{ . }} + + {{ end }} +
+ {{ end }} + + + + {{ i18n "visitGithub" }} → + +
+
+ {{ end }} +
+
+
+
+{{ end }}