-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a466ed7
commit 2fbbf29
Showing
4 changed files
with
42 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,6 @@ tags = [ | |
"markdown", | ||
"css", | ||
"html", | ||
"themes", | ||
] | ||
categories = [ | ||
"themes", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 >}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|