From 16f52b7bef745097f7076dde76715db378b54343 Mon Sep 17 00:00:00 2001 From: JJ Date: Wed, 19 Mar 2025 14:56:26 +0000 Subject: first commit --- layouts/partials/custom_body.html | 3 +++ layouts/partials/custom_head.html | 3 +++ layouts/partials/favicon.html | 2 ++ layouts/partials/footer.html | 1 + layouts/partials/header.html | 7 +++++++ layouts/partials/nav.html | 9 +++++++++ layouts/partials/seo_tags.html | 22 ++++++++++++++++++++++ 7 files changed, 47 insertions(+) create mode 100644 layouts/partials/custom_body.html create mode 100644 layouts/partials/custom_head.html create mode 100644 layouts/partials/favicon.html create mode 100644 layouts/partials/footer.html create mode 100644 layouts/partials/header.html create mode 100644 layouts/partials/nav.html create mode 100644 layouts/partials/seo_tags.html (limited to 'layouts/partials') diff --git a/layouts/partials/custom_body.html b/layouts/partials/custom_body.html new file mode 100644 index 0000000..951fb15 --- /dev/null +++ b/layouts/partials/custom_body.html @@ -0,0 +1,3 @@ + diff --git a/layouts/partials/custom_head.html b/layouts/partials/custom_head.html new file mode 100644 index 0000000..4c53c40 --- /dev/null +++ b/layouts/partials/custom_head.html @@ -0,0 +1,3 @@ + diff --git a/layouts/partials/favicon.html b/layouts/partials/favicon.html new file mode 100644 index 0000000..ccf1a5d --- /dev/null +++ b/layouts/partials/favicon.html @@ -0,0 +1,2 @@ +{{ with .Site.Params.favicon }} +{{ end }} diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..861b2cc --- /dev/null +++ b/layouts/partials/footer.html @@ -0,0 +1 @@ +

Find me here: git

diff --git a/layouts/partials/header.html b/layouts/partials/header.html new file mode 100644 index 0000000..12fe8b2 --- /dev/null +++ b/layouts/partials/header.html @@ -0,0 +1,7 @@ +
+ avatar + +

{{ .Site.Title }}

+
+ +
diff --git a/layouts/partials/nav.html b/layouts/partials/nav.html new file mode 100644 index 0000000..be5539c --- /dev/null +++ b/layouts/partials/nav.html @@ -0,0 +1,9 @@ +{{ with .Site.GetPage "/blog" }} +blog +{{ end }} +{{ with .Site.GetPage "/snippets" }} +snippets +{{ end }} +{{ with .Site.GetPage "/projects" }} +projects +{{ end }} \ No newline at end of file diff --git a/layouts/partials/seo_tags.html b/layouts/partials/seo_tags.html new file mode 100644 index 0000000..7cea9a1 --- /dev/null +++ b/layouts/partials/seo_tags.html @@ -0,0 +1,22 @@ + + + + + + +{{ template "_internal/opengraph.html" . }} + + +{{ template "_internal/twitter_cards.html" . }} + + +{{ template "_internal/schema.html" . }} -- cgit v1.2.3