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

github.com/queensferryme/hugo-theme-texify.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQueensferry <queensferry.me@gmail.com>2021-02-25 16:34:39 +0300
committerQueensferry <queensferry.me@gmail.com>2021-02-25 16:34:39 +0300
commit2fbbf29bbc5fd9183c3eb12d772cdd01b9b72e51 (patch)
treeba2de9f23d382d04d7982b8433e7dc4e51e093ea
parenta466ed74f68f188050d972051f8ea8f0969c99a2 (diff)
chore: update example site (#1)
-rw-r--r--exampleSite/content/about.md2
-rw-r--r--exampleSite/content/post/markdown-syntax.md1
-rw-r--r--exampleSite/content/post/rich-content.md34
-rwxr-xr-xtools/update.sh7
4 files changed, 42 insertions, 2 deletions
diff --git a/exampleSite/content/about.md b/exampleSite/content/about.md
index f49aec5..b31bf1d 100644
--- a/exampleSite/content/about.md
+++ b/exampleSite/content/about.md
@@ -20,6 +20,6 @@ Hugo is ideal for blogs, corporate websites, creative portfolios, online magazin
Hugo is for people who want to hand code their own website without worrying about setting up complicated runtimes, dependencies and databases.
-Websites built with Hugo are extremelly fast, secure and can be deployed anywhere including, AWS, GitHub Pages, Heroku, Netlify and any other hosting provider.
+Websites built with Hugo are extremely fast, secure and can be deployed anywhere including, AWS, GitHub Pages, Heroku, Netlify and any other hosting provider.
Learn more and contribute on [GitHub](https://github.com/gohugoio).
diff --git a/exampleSite/content/post/markdown-syntax.md b/exampleSite/content/post/markdown-syntax.md
index 2aa35e1..06990d7 100644
--- a/exampleSite/content/post/markdown-syntax.md
+++ b/exampleSite/content/post/markdown-syntax.md
@@ -7,7 +7,6 @@ tags = [
"markdown",
"css",
"html",
- "themes",
]
categories = [
"themes",
diff --git a/exampleSite/content/post/rich-content.md b/exampleSite/content/post/rich-content.md
new file mode 100644
index 0000000..92b4b03
--- /dev/null
+++ b/exampleSite/content/post/rich-content.md
@@ -0,0 +1,34 @@
++++
+author = "Hugo Authors"
+title = "Rich Content"
+date = "2019-03-10"
+description = "A brief description of Hugo Shortcodes"
+tags = [
+ "shortcodes",
+ "privacy",
+]
++++
+
+Hugo ships with several [Built-in Shortcodes](https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes) for rich content, along with a [Privacy Config](https://gohugo.io/about/hugo-and-gdpr/) and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.
+<!--more-->
+---
+
+## YouTube Privacy Enhanced Shortcode
+
+{{< youtube ZJthWmvUzzc >}}
+
+<br>
+
+---
+
+## Twitter Simple Shortcode
+
+{{< twitter_simple 1085870671291310081 >}}
+
+<br>
+
+---
+
+## Vimeo Simple Shortcode
+
+{{< vimeo_simple 48912912 >}}
diff --git a/tools/update.sh b/tools/update.sh
new file mode 100755
index 0000000..3c7f19e
--- /dev/null
+++ b/tools/update.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+git clone https://github.com/gohugoio/hugoBasicExample.git
+rm -rf exampleSite/content
+mv hugoBasicExample/content exampleSite
+rm -rf hugoBasicExample
+