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

github.com/alexandrevicenzi/soho.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Vicenzi <github@alxd.me>2022-03-08 16:15:18 +0300
committerGitHub <noreply@github.com>2022-03-08 16:15:18 +0300
commit98502b240c731e47ce924eb1e6e7ae56fb1fa154 (patch)
tree1b9060c276423cf6209413af54977aacd4f1529e
parent8fae4af867d68db074474342489c5aa5ec4d3599 (diff)
parentc437d766fd2069457884a9ab4ea179da5666dbfe (diff)
Merge pull request #12 from deining/theme
Add theme for example site
-rw-r--r--exampleSite/.gitignore1
-rw-r--r--exampleSite/config.toml1
-rw-r--r--exampleSite/go.mod5
-rw-r--r--exampleSite/go.sum2
4 files changed, 9 insertions, 0 deletions
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=