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

github.com/spaghettiwews/hugonews.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspaghettiwews <spaghettiwews@outlook.com>2019-11-04 23:27:24 +0300
committerspaghettiwews <spaghettiwews@outlook.com>2019-11-04 23:27:24 +0300
commitc53d7e6ee553009fa214e5eeeef4fc76bf486c3c (patch)
treee566c558523ad6f2b3b91a0cb7268a98a7c3d7b3
parent873605be2f4ad7283d0aa181567f1f5395f5a015 (diff)
add exampleSite
-rw-r--r--exampleSite/archetypes/default.md6
-rw-r--r--exampleSite/config.toml9
-rw-r--r--exampleSite/content/items/gohugo-discourse.md9
-rw-r--r--exampleSite/content/items/gohugo-documentation.md9
-rw-r--r--exampleSite/content/items/gohugo-github.md12
-rw-r--r--exampleSite/content/items/gohugo-twitter.md10
6 files changed, 55 insertions, 0 deletions
diff --git a/exampleSite/archetypes/default.md b/exampleSite/archetypes/default.md
new file mode 100644
index 0000000..00e77bd
--- /dev/null
+++ b/exampleSite/archetypes/default.md
@@ -0,0 +1,6 @@
+---
+title: "{{ replace .Name "-" " " | title }}"
+date: {{ .Date }}
+draft: true
+---
+
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
new file mode 100644
index 0000000..ffdfa3d
--- /dev/null
+++ b/exampleSite/config.toml
@@ -0,0 +1,9 @@
+baseURL = "https://example.com/"
+languageCode = "en-us"
+title = "hugonews example site"
+theme = "hugonews"
+
+[taxonomies]
+ tag = "tags"
+ category = "categories"
+ site = "sites" \ No newline at end of file
diff --git a/exampleSite/content/items/gohugo-discourse.md b/exampleSite/content/items/gohugo-discourse.md
new file mode 100644
index 0000000..ce68185
--- /dev/null
+++ b/exampleSite/content/items/gohugo-discourse.md
@@ -0,0 +1,9 @@
+---
+title: "Hugo Discourse Forum"
+date: 2019-11-04T21:50:41+02:00
+itemurl: "https://discourse.gohugo.io/"
+sites: "discourse.gohugo.io"
+tags: ["forum", "community", "hugo"]
+draft: false
+---
+
diff --git a/exampleSite/content/items/gohugo-documentation.md b/exampleSite/content/items/gohugo-documentation.md
new file mode 100644
index 0000000..56c4f5c
--- /dev/null
+++ b/exampleSite/content/items/gohugo-documentation.md
@@ -0,0 +1,9 @@
+---
+title: "Hugo Documentation Website"
+date: 2019-11-04T21:51:03+02:00
+itemurl: "https://gohugo.io/documentation/"
+sites: "gohugo.io"
+tags: ["documentation", "reference", "hugo"]
+draft: false
+---
+
diff --git a/exampleSite/content/items/gohugo-github.md b/exampleSite/content/items/gohugo-github.md
new file mode 100644
index 0000000..ff994fd
--- /dev/null
+++ b/exampleSite/content/items/gohugo-github.md
@@ -0,0 +1,12 @@
+---
+title: "Hugo Github"
+date: 2019-11-04T21:51:07+02:00
+itemurl: "https://github.com/gohugoio/hugo"
+sites: "github.com"
+tags: ["source code", "github", "hugo"]
+draft: false
+---
+
+- hugo is a cross-platform static site generator developed in Go.
+- it takes as input markdown files and compiles them into HTML files that can then be hosted pretty much anywhere
+- hugo is flexible but also fast. _very fast._ \ No newline at end of file
diff --git a/exampleSite/content/items/gohugo-twitter.md b/exampleSite/content/items/gohugo-twitter.md
new file mode 100644
index 0000000..cef2a0d
--- /dev/null
+++ b/exampleSite/content/items/gohugo-twitter.md
@@ -0,0 +1,10 @@
+---
+title: "Hugo Twitter Account"
+date: 2019-11-04T21:51:11+02:00
+itemurl: "https://twitter.com/GoHugoIO"
+sites: "twitter.com"
+tags: ["hugo", "twitter"]
+draft: false
+---
+
+> Reminder: This Twitter account is not actively maintained for questions. All questions should be posted on https://discourse.gohugo.io \ No newline at end of file