From d0deda9b496f582374f71bf25dd97b8410387a21 Mon Sep 17 00:00:00 2001 From: frosty Date: Fri, 22 Aug 2025 08:54:40 -0400 Subject: initial commit --- themes/orca/layouts/partials/header.html | 14 ++++++++++++++ themes/orca/layouts/partials/post-item.html | 11 +++++++++++ 2 files changed, 25 insertions(+) create mode 100644 themes/orca/layouts/partials/header.html create mode 100644 themes/orca/layouts/partials/post-item.html (limited to 'themes/orca/layouts/partials') diff --git a/themes/orca/layouts/partials/header.html b/themes/orca/layouts/partials/header.html new file mode 100644 index 0000000..77d2a39 --- /dev/null +++ b/themes/orca/layouts/partials/header.html @@ -0,0 +1,14 @@ +
+ + +
diff --git a/themes/orca/layouts/partials/post-item.html b/themes/orca/layouts/partials/post-item.html new file mode 100644 index 0000000..183dd28 --- /dev/null +++ b/themes/orca/layouts/partials/post-item.html @@ -0,0 +1,11 @@ +
+ {{ .Type }} + {{ .Title }} +
+ {{ .Date.Format "January 2nd, 2006" }} +
+
+ + {{ range $i, $t := .Params.tags }}{{ if $i }}, {{ end }}{{ $t }}{{ end }} + +
-- cgit v1.2.3