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

github.com/budparr/gohugo-theme-ananke.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRegis Philibert <login@regisphilibert.com>2022-02-11 23:25:39 +0300
committerGitHub <noreply@github.com>2022-02-11 23:25:39 +0300
commit8fdfd205f9b4fd2f52eac9dfd2da8e11bea2015e (patch)
tree3ae13e295af5fb35727c580303e5ef489f19d49a
parentd4e5a698a829e63273252418dd2a5cccdeb04aa2 (diff)
Trick CI into using self module (#515)
-rw-r--r--exampleSite/config.toml4
-rw-r--r--exampleSite/go.mod7
-rw-r--r--exampleSite/go.sum2
-rw-r--r--go.mod2
4 files changed, 11 insertions, 4 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 8a091aa..66f0447 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -1,8 +1,7 @@
title = "Notre-Dame de Paris"
baseURL = "https://example.com"
languageCode = "en-us"
-theme = "gohugo-theme-ananke"
-themesDir = "../.."
+theme = ["github.com/theNewDynamic/gohugo-theme-ananke"]
resourceDir = "../resources"
DefaultContentLanguage = "en"
@@ -34,7 +33,6 @@ enableRobotsTXT = true
description = "The last theme you'll ever need. Maybe."
# choose a background color from any on this page: http://tachyons.io/docs/themes/skins/ and preface it with "bg-"
background_color_class = "bg-black"
- featured_image = "/images/gohugo-default-sample-hero-image.jpg"
recent_posts_number = 3
[[params.ananke_socials]]
diff --git a/exampleSite/go.mod b/exampleSite/go.mod
new file mode 100644
index 0000000..7a7de2c
--- /dev/null
+++ b/exampleSite/go.mod
@@ -0,0 +1,7 @@
+module github.com/theNewDynamic/gohugo-theme-ananke/exampleSite
+
+go 1.14
+
+replace github.com/theNewDynamic/gohugo-theme-ananke => ../
+
+require github.com/theNewDynamic/gohugo-theme-ananke v0.0.0-20220211195439-d4e5a698a829 // indirect
diff --git a/exampleSite/go.sum b/exampleSite/go.sum
new file mode 100644
index 0000000..02eeb52
--- /dev/null
+++ b/exampleSite/go.sum
@@ -0,0 +1,2 @@
+github.com/theNewDynamic/gohugo-theme-ananke v0.0.0-20220211195439-d4e5a698a829 h1:dxXpDsAqswhvn8pPOC993d217NX/ZbIUSkWz1/awi4s=
+github.com/theNewDynamic/gohugo-theme-ananke v0.0.0-20220211195439-d4e5a698a829/go.mod h1:bgj7bjD98mZSR/KOYKuF5lcIgEmTnJ763rZH4EseLv4=
diff --git a/go.mod b/go.mod
index 90be61c..da8d9eb 100644
--- a/go.mod
+++ b/go.mod
@@ -1,3 +1,3 @@
module github.com/theNewDynamic/gohugo-theme-ananke
-go 1.12
+go 1.14