Skip to content

Commit

Permalink
chore: update example site (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
queensferryme committed Feb 25, 2021
1 parent a466ed7 commit 2fbbf29
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 2 deletions.
2 changes: 1 addition & 1 deletion exampleSite/content/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
1 change: 0 additions & 1 deletion exampleSite/content/post/markdown-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ tags = [
"markdown",
"css",
"html",
"themes",
]
categories = [
"themes",
Expand Down
34 changes: 34 additions & 0 deletions exampleSite/content/post/rich-content.md
Original file line number Diff line number Diff line change
@@ -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 >}}
7 changes: 7 additions & 0 deletions tools/update.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 2fbbf29

Please sign in to comment.