From 68a477bc113f71b8914fdf68c2adbf9d751933aa Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Thu, 8 Aug 2024 09:53:33 -1000 Subject: [PATCH] Layouts: Move layouts to a commandbar sudirectory of layouts/partials --- layouts/partials/commandbar/script.html | 5 +++++ layouts/partials/{ => commandbar}/template.html | 0 layouts/partials/script.html | 2 -- 3 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 layouts/partials/commandbar/script.html rename layouts/partials/{ => commandbar}/template.html (100%) delete mode 100644 layouts/partials/script.html diff --git a/layouts/partials/commandbar/script.html b/layouts/partials/commandbar/script.html new file mode 100644 index 0000000..abfeaf1 --- /dev/null +++ b/layouts/partials/commandbar/script.html @@ -0,0 +1,5 @@ +{{ + $resource := partial "resource_builders/script.html" + (dict "resource" "commandbar/js/commandBar.js") +}} +{{ return $resource }} diff --git a/layouts/partials/template.html b/layouts/partials/commandbar/template.html similarity index 100% rename from layouts/partials/template.html rename to layouts/partials/commandbar/template.html diff --git a/layouts/partials/script.html b/layouts/partials/script.html deleted file mode 100644 index 0c0c28a..0000000 --- a/layouts/partials/script.html +++ /dev/null @@ -1,2 +0,0 @@ -{{ $resource := partial "resource_builders/script.html" (dict "resource" "commandbar/js/commandBar.js") }} -{{ return $resource }}