diff --git a/exampleSite/.gitignore b/exampleSite/.gitignore new file mode 100644 index 0000000..5c41f01 --- /dev/null +++ b/exampleSite/.gitignore @@ -0,0 +1 @@ +.hugo_build.lock \ No newline at end of file diff --git a/exampleSite/config.toml b/exampleSite/config.toml index 68fb16e..553bc8f 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -1,6 +1,7 @@ baseurl = "https://example.com/" languageCode = "en" title = "Soho Theme" +theme = "github.com/alexandrevicenzi/soho" DefaultContentLanguage = "en" enableInlineShortcodes = true summarylength = 10 diff --git a/exampleSite/go.mod b/exampleSite/go.mod new file mode 100644 index 0000000..118e4f1 --- /dev/null +++ b/exampleSite/go.mod @@ -0,0 +1,5 @@ +module github.com/alexandrevicenzi/soho/exampleSite + +go 1.12 + +require github.com/alexandrevicenzi/soho v1.1.0 // indirect diff --git a/exampleSite/go.sum b/exampleSite/go.sum new file mode 100644 index 0000000..71f9c6d --- /dev/null +++ b/exampleSite/go.sum @@ -0,0 +1,2 @@ +github.com/alexandrevicenzi/soho v1.1.0 h1:vXAEpvWPa8qo9JbZNyFHwr6/MDadZpslo1+GBn+c6kU= +github.com/alexandrevicenzi/soho v1.1.0/go.mod h1:OJk59xwtMsfVCt+dVL3rOqXj9HW7ThJYP6rCULyx9Jw=