From c437d766fd2069457884a9ab4ea179da5666dbfe Mon Sep 17 00:00:00 2001
From: Andreas Deininger <andreas@deininger.net>
Date: Wed, 2 Mar 2022 21:11:53 +0100
Subject: [PATCH] Add theme for example site

---
 exampleSite/.gitignore  | 1 +
 exampleSite/config.toml | 1 +
 exampleSite/go.mod      | 5 +++++
 exampleSite/go.sum      | 2 ++
 4 files changed, 9 insertions(+)
 create mode 100644 exampleSite/.gitignore
 create mode 100644 exampleSite/go.mod
 create mode 100644 exampleSite/go.sum

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=
-- 
GitLab