Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugoTestModule2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-09-09 20:29:34 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-09-09 20:34:34 +0300
commitaab6853bad7b141b3c6fb3e62abddd2b3f0f979e (patch)
tree028e5532e0d4f5ae78ee2a3218ae4069e6484fe0
parent0c98f0ba78a9686ea2eba5030d34a44193d49d7d (diff)
Add config with params and one import
-rw-r--r--config.toml10
-rw-r--r--go.mod2
-rw-r--r--go.sum4
3 files changed, 16 insertions, 0 deletions
diff --git a/config.toml b/config.toml
new file mode 100644
index 0000000..97c3f9a
--- /dev/null
+++ b/config.toml
@@ -0,0 +1,10 @@
+
+[params]
+hugo = "Rocks"
+
+[module]
+[[module.mounts]]
+source = "templates/hooks"
+target = "layouts/_default/_markup"
+[[module.imports]]
+path = "github.com/gohugoio/hugo-mod-jslibs/alpinejs" \ No newline at end of file
diff --git a/go.mod b/go.mod
index 48a90c0..ac2c461 100644
--- a/go.mod
+++ b/go.mod
@@ -1,3 +1,5 @@
module github.com/gohugoio/hugoTestModule2
go 1.13
+
+require github.com/gohugoio/hugo-mod-jslibs/alpinejs v0.5.0 // indirect
diff --git a/go.sum b/go.sum
new file mode 100644
index 0000000..86402a0
--- /dev/null
+++ b/go.sum
@@ -0,0 +1,4 @@
+github.com/alpinejs/alpine v2.6.0+incompatible/go.mod h1:BKI81egATMnaKqFeX5HEfYMnjZjcjcZmrYAu5Nck+EY=
+github.com/gohugoio/hugo-mod-jslibs v0.0.0-20200824210130-fc4ffd0cae1a h1:VbLACuTbvfgSgBAP5WN0DER/jjXbRCma6ugAMseWv8U=
+github.com/gohugoio/hugo-mod-jslibs/alpinejs v0.5.0 h1:OcDJvjE96GA9cSHAQBYNspozO2jF8GYt9rOz5poa0BY=
+github.com/gohugoio/hugo-mod-jslibs/alpinejs v0.5.0/go.mod h1:XvAGp/0tQ8bZpoCcM6rdx1NbzZUy3/KtetedtdgaNek=