From 0705dcc8a0ebc5abc1952eb0588beb1401185673 Mon Sep 17 00:00:00 2001 From: brooke Date: Fri, 24 May 2024 01:33:58 -0400 Subject: [PATCH] update config, add rawhtml shortcode --- config.yaml | 2 +- content/contact/index.md | 6 +++++- themes/gallo/layouts/shortcodes/rawhtml.html | 1 + 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 themes/gallo/layouts/shortcodes/rawhtml.html diff --git a/config.yaml b/config.yaml index 5ec5309..80368ae 100644 --- a/config.yaml +++ b/config.yaml @@ -4,7 +4,7 @@ theme: gallo params: logo: /img/gallo_welding_inverted.webp - copyName: John Doe + copyName: Gallo Welding headerTitle: Gallo Welding & Fabrication headerImg: /img/wide.webp headerDesc: > diff --git a/content/contact/index.md b/content/contact/index.md index addfa45..95329ac 100644 --- a/content/contact/index.md +++ b/content/contact/index.md @@ -1,4 +1,8 @@ --- date: '2024-05-22T12:47:43-04:00' title: 'Contact Us!' ---- \ No newline at end of file +--- + +{{< rawhtml >}} + +{{< /rawhtml >}} \ No newline at end of file diff --git a/themes/gallo/layouts/shortcodes/rawhtml.html b/themes/gallo/layouts/shortcodes/rawhtml.html new file mode 100644 index 0000000..ed3fb8a --- /dev/null +++ b/themes/gallo/layouts/shortcodes/rawhtml.html @@ -0,0 +1 @@ +{{.Inner}} \ No newline at end of file