From b78200d5a90bf715c4e66d646f295d1cc27fd61e Mon Sep 17 00:00:00 2001 From: giles Date: Wed, 25 Sep 2024 22:35:48 +0100 Subject: [PATCH] hbs --- default.hbs | 1 + partials/content.hbs | 6 +++--- partials/shop/configure-product.hbs | 2 ++ partials/shop/scripts.hbs | 27 +++++++++++++++++++++++++ partials/{shop-top.hbs => shop/top.hbs} | 0 5 files changed, 33 insertions(+), 3 deletions(-) create mode 100644 partials/shop/configure-product.hbs create mode 100644 partials/shop/scripts.hbs rename partials/{shop-top.hbs => shop/top.hbs} (100%) diff --git a/default.hbs b/default.hbs index 9d57bca..61e55dd 100644 --- a/default.hbs +++ b/default.hbs @@ -29,6 +29,7 @@ transform: scale(1.1); } +{{> "shop/scripts"}} diff --git a/partials/content.hbs b/partials/content.hbs index ef208f0..bfeb0c8 100644 --- a/partials/content.hbs +++ b/partials/content.hbs @@ -23,7 +23,7 @@

{{title}}

- {{> "shop-top"}} + {{> "shop/top"}}
{{#if custom_excerpt}}
@@ -94,8 +94,8 @@ {{/next_post}}
-
-
+ {{> "shop/configure-product"}} + {{/is}} diff --git a/partials/shop/configure-product.hbs b/partials/shop/configure-product.hbs new file mode 100644 index 0000000..f7ffbfc --- /dev/null +++ b/partials/shop/configure-product.hbs @@ -0,0 +1,2 @@ +
+
\ No newline at end of file diff --git a/partials/shop/scripts.hbs b/partials/shop/scripts.hbs new file mode 100644 index 0000000..2e7af07 --- /dev/null +++ b/partials/shop/scripts.hbs @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/partials/shop-top.hbs b/partials/shop/top.hbs similarity index 100% rename from partials/shop-top.hbs rename to partials/shop/top.hbs