From a78380049fca7eb6de32d60898463943731cae77 Mon Sep 17 00:00:00 2001 From: jaseg Date: Mon, 21 May 2018 13:21:26 +0200 Subject: Vendor heavily modified theme --- .../hugo-classic/layouts/partials/foot_custom.html | 25 ++++++++++++++++ themes/hugo-classic/layouts/partials/footer.html | 13 +++++++++ .../hugo-classic/layouts/partials/head_custom.html | 33 ++++++++++++++++++++++ themes/hugo-classic/layouts/partials/header.html | 16 +++++++++++ 4 files changed, 87 insertions(+) create mode 100644 themes/hugo-classic/layouts/partials/foot_custom.html create mode 100644 themes/hugo-classic/layouts/partials/footer.html create mode 100644 themes/hugo-classic/layouts/partials/head_custom.html create mode 100644 themes/hugo-classic/layouts/partials/header.html (limited to 'themes/hugo-classic/layouts/partials') diff --git a/themes/hugo-classic/layouts/partials/foot_custom.html b/themes/hugo-classic/layouts/partials/foot_custom.html new file mode 100644 index 0000000..3d9fb1d --- /dev/null +++ b/themes/hugo-classic/layouts/partials/foot_custom.html @@ -0,0 +1,25 @@ + + diff --git a/themes/hugo-classic/layouts/partials/footer.html b/themes/hugo-classic/layouts/partials/footer.html new file mode 100644 index 0000000..932d541 --- /dev/null +++ b/themes/hugo-classic/layouts/partials/footer.html @@ -0,0 +1,13 @@ + + + diff --git a/themes/hugo-classic/layouts/partials/head_custom.html b/themes/hugo-classic/layouts/partials/head_custom.html new file mode 100644 index 0000000..6520ca0 --- /dev/null +++ b/themes/hugo-classic/layouts/partials/head_custom.html @@ -0,0 +1,33 @@ +
+ + + + + + +
diff --git a/themes/hugo-classic/layouts/partials/header.html b/themes/hugo-classic/layouts/partials/header.html new file mode 100644 index 0000000..6ef9a69 --- /dev/null +++ b/themes/hugo-classic/layouts/partials/header.html @@ -0,0 +1,16 @@ + + + + + + {{ .Title }} | {{ .Site.Title }} + + + {{ range .Site.Params.custom_css -}} + + {{- end }} + {{ partial "head_custom.html" . }} + + + +
-- cgit