From d32ef68eabe6fb8d044d936d2e59909cd613920d Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Wed, 15 Apr 2026 22:05:38 +0200 Subject: Implement taxonomy system for tags and categories - Enable tags and categories taxonomies in hugo.toml - Create taxonomy/list.html for archive pages (/tags, /categories) - Create taxonomy/term.html for individual term pages (/tags/example) - Add quote shortcode for quote-type articles - Both templates reuse article-list-item partial for consistent styling Co-Authored-By: Claude Haiku 4.5 --- themes/danix-xyz-hacker/layouts/shortcodes/quote.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 themes/danix-xyz-hacker/layouts/shortcodes/quote.html (limited to 'themes/danix-xyz-hacker/layouts/shortcodes/quote.html') diff --git a/themes/danix-xyz-hacker/layouts/shortcodes/quote.html b/themes/danix-xyz-hacker/layouts/shortcodes/quote.html new file mode 100644 index 0000000..1ed5c3c --- /dev/null +++ b/themes/danix-xyz-hacker/layouts/shortcodes/quote.html @@ -0,0 +1,15 @@ +{{- $source := .Get "source" -}} +{{- $src := .Get "src" -}} + +
+

{{ .Inner }}

+ {{- if $source -}} + + {{- end -}} +
-- cgit v1.2.3