+
+
+The [Emoji cheat sheet](http://www.emoji-cheat-sheet.com/) is a useful reference for emoji shorthand codes.
+
+***
+
+**N.B.** The above steps enable Unicode Standard emoji characters and sequences in Hugo, however the rendering of these glyphs depends on the browser and the platform. To style the emoji you can either use a third party emoji font or a font stack; e.g.
+
+{{< highlight html >}}
+.emoji {
+font-family: Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols;
+}
+{{< /highlight >}}
+
+***
+
+
+If you feel restricted by Unicode Standard emoji and want to use custom emoji the [`replaceRE`](https://gohugo.io/functions/replacere/#readout) function makes it easy to perform Static Image Replacement in Hugo.
+
+In this example we will be using emoji from the [Mutant Standard](https://mutant.tech/) set.
+
+- Do not use `enableEmoji` in your Hugo project's configuration
+
+- Store the icons of the custom emoji set under `/static/`
+
+- Use the shorthand codes provided by the custom emoji set in your content files e.g. `:orc:`
+
+- In your templates execute the Image Replacement like so:
+
+{{< highlight html >}}
+{{ replaceRE "(\\:([a-zA-Z0-9_]*)\\:)" `` .Content | markdownify | safeHTML }}
+{{< /highlight >}}
+
+
+{{< css.inline >}}
+
+
+{{< /css.inline >}}
+
+
+**N.B.** The above RegEx captures all alphanumerics and underscores within two colon `:` characters (amend it according to your custom emoji set's specification).
\ No newline at end of file
diff --git a/content/post/markdown-and-html-syntax.md b/content/post/markdown-and-html-syntax.md
new file mode 100644
index 00000000..98c56f9c
--- /dev/null
+++ b/content/post/markdown-and-html-syntax.md
@@ -0,0 +1,242 @@
++++
+author = "Hugo Authors"
+title = "Markdown & HTML Syntax Guide"
+date = "2019-03-11"
+description = "Sample article showcasing basic Markdown syntax and formatting for HTML elements."
+tags = [
+ "markdown",
+ "css",
+ "html",
+ "themes",
+]
+categories = [
+ "themes",
+ "syntax",
+]
+series = ["Themes Guide"]
+aliases = ["migrate-from-jekyl"]
++++
+
+This article offers a sample of basic Markdown and HTML syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
+
+***
+
+## Headings
+
+The following HTML `
`—`
` elements represent six levels of section headings. `
` is the highest section level while `
` is the lowest.
+
+# H1
+## H2
+### H3
+#### H4
+##### H5
+###### H6
+
+***
+
+## Paragraph
+
+Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
+
+Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
+
+---
+
+## Blockquotes
+
+The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
+
+
Blockquote without attribution
+
+> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
+> **Note** that you can use *Markdown syntax* within a blockquote.
+
+
Blockquote with attribution
+
+
+
Don't communicate by sharing memory, share memory by communicating.
+
+
+
+###### The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
+
+***
+
+## Tables
+
+Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
+
+
Markdown Input
+
+```
+ Name | Age
+--------|------
+ Bob | 27
+ Alice | 23
+```
+
HTML Output
+
+ Name | Age
+--------|------
+ Bob | 27
+ Alice | 23
+
+
+
+
+
Code block with Hugo's internal highlight shortcode
+{{< highlight html >}}
+
+
+
+
+ Example HTML5 Document
+
+
+
Test
+
+
+{{< /highlight >}}
+
+---
+
+## List Types
+
+### Ordered List
+
+1. First item
+2. Second item
+3. Third item
+
+
+### Unordered List
+
+
Markdown Input
+
+```
+* List item
+* Another item
+* And another item
+```
+
+
HTML Output
+
+
+
List item
+
Another item
+
And another item
+
+
+
+### Nested list
+
+
Markdown Input
+
+```
+* Item
+1. First Sub-item
+2. Second Sub-item
+```
+
+
HTML Output
+
+
+
Item
+
+
First Sub-item
+
Second Sub-item
+
+
+
+
+
+### Definition List
+
+
HTML Input
+
+```
+
+
Aque venitatiusda cum
+
Voluptionse latur sitiae dolessi...
+
Dantinc itiur
+
Axim reperum ese eaquam, coriatiorita...
+
+```
+
+
HTML Output
+
+
+
Aque venitatiusda cum
+
Voluptionse latur sitiae dolessi...
+
Dantinc itiur
+
Axim reperum ese eaquam, coriatiorita...
+
+
+
+
+---
+
+## Other Elements — abbr, sub, sup, kbd, mark
+
+GIF is a bitmap image format.
+
+H2O
+
+Xn + Yn = Zn
+
+Press CTRL+ALT+Delete to end the session.
+
+Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.
\ No newline at end of file
diff --git a/content/post/math-typesetting.mmark b/content/post/math-typesetting.mmark
new file mode 100644
index 00000000..7f421ae1
--- /dev/null
+++ b/content/post/math-typesetting.mmark
@@ -0,0 +1,46 @@
+---
+author: Hugo Authors
+title: Math Typesetting
+date: 2019-03-08
+description: A brief guide to setup KaTeX
+markup: mmark
+math: true
+---
+
+Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.
+
+
+In this example we will be using [KaTeX](https://katex.org/)
+
+- Create a partial under `/layouts/partials/math.html`
+- Within this partial reference the [Auto-render Extension](https://katex.org/docs/autorender.html) or host these scripts locally.
+- Include the partial in your templates like so:
+
+```
+{{ if or .Params.math .Site.Params.math }}
+{{ partial "math.html" . }}
+{{ end }}
+```
+- To enable KaTex globally set the parameter `math` to `true` in a project's configuration
+- To enable KaTex on a per page basis include the parameter `math: true` in content files.
+
+**Note:** Use the online reference of [Supported TeX Functions](https://katex.org/docs/supported.html)
+{{< math.inline >}}
+{{ if or .Page.Params.math .Site.Params.math }}
+
+
+
+
+{{ end }}
+{{ math.inline >}}
+
+### Examples
+
+Inline math: $$ \varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887… $$
+
+Block math:
+
+$$
+ \varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } }
+$$
+
diff --git a/content/post/placeholder-text.md b/content/post/placeholder-text.md
new file mode 100644
index 00000000..44c0d5f4
--- /dev/null
+++ b/content/post/placeholder-text.md
@@ -0,0 +1,60 @@
++++
+author = "Hugo Authors"
+title = "Placeholder Text"
+date = "2019-03-09"
+description = "Lorem Ipsum Dolor Si Amet"
+tags = [
+ "markdown",
+ "text",
+]
++++
+
+# Vagus elidunt
+
+
+
+[The Van de Graaf Canon](https://en.wikipedia.org/wiki/Canons_of_page_construction#Van_de_Graaf_canon)
+
+## Mole et vultus populifer quaque primoque non
+
+Lorem est tota propiore conpellat pectoribus de
+pectora summo. Redit teque digerit hominumque toris verebor lumina non cervice
+subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc
+caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis
+lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum.
+
+1. Exierant elisi ambit vivere dedere
+2. Duce pollice
+3. Eris modo
+4. Spargitque ferrea quos palude
+
+Rursus nulli murmur; hastile inridet ut ab gravi sententia! Nomine potitus
+silentia flumen, sustinet placuit petis in dilapsa erat sunt. Atria
+tractus malis.
+
+1. Comas hunc haec pietate fetum procerum dixit
+2. Post torum vates letum Tiresia
+3. Flumen querellas
+4. Arcanaque montibus omnes
+5. Quidem et
+
+## Mane refeci capiebant unda mulcebat
+
+Victa caducifer, malo vulnere contra
+dicere aurato, ludit regale, voca! Retorsit colit est profanae esse virescere
+furit nec; iaculi matertera et visa est, viribus. Divesque creatis, tecta novat collumque vulnus est, parvas. **Faces illo pepulere** tempus adest. Tendit flamma, ab opes virum sustinet, sidus sequendo urbis.
+
+Iubar proles corpore raptos vero auctor imperium; sed et huic: manus caeli
+Lelegas tu lux. Verbis obstitit intus oblectamina fixis linguisque ausus sperare
+Echionides cornuaque tenent clausit possit. Omnia putatur. Praeteritae refert
+ausus; ferebant e primus lora nutat, vici quae mea ipse. Et iter nil spectatae
+vulnus haerentia iuste et exercebat, sui et.
+
+Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit sequitur. Vel **mitis temploque** vocatus, inque alis, *oculos nomen* non silvis corpore coniunx ne displicet illa. Crescunt non unus, vidit visa quantum inmiti flumina mortis facto sic: undique a alios vincula sunt iactata abdita! Suspenderat ego fuit tendit: luna, ante urbem
+Propoetides **parte**.
+
+{{< css.inline >}}
+
+{{< /css.inline >}}
\ No newline at end of file
diff --git a/content/post/rich-content.md b/content/post/rich-content.md
new file mode 100644
index 00000000..5ff41d72
--- /dev/null
+++ b/content/post/rich-content.md
@@ -0,0 +1,42 @@
++++
+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-hugo-s-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.
+
+---
+
+## Instagram Simple Shortcode
+
+{{< instagram_simple BGvuInzyFAe hidecaption >}}
+
+
+
+---
+
+## YouTube Privacy Enhanced Shortcode
+
+{{< youtube ZJthWmvUzzc >}}
+
+
+
+---
+
+## Twitter Simple Shortcode
+
+{{< twitter_simple 1085870671291310081 >}}
+
+
+
+---
+
+## Vimeo Simple Shortcode
+
+{{< vimeo_simple 48912912 >}}
diff --git a/content/posts/_index.md b/content/posts/_index.md
deleted file mode 100644
index 127b32d5..00000000
--- a/content/posts/_index.md
+++ /dev/null
@@ -1,5 +0,0 @@
-+++
-aliases = ["posts","articles","blog","showcase"]
-title = "Posts"
-author = "Hugo Authors"
-+++
\ No newline at end of file
diff --git a/content/posts/_index.md b/content/posts/_index.md
new file mode 120000
index 00000000..f47820d1
--- /dev/null
+++ b/content/posts/_index.md
@@ -0,0 +1 @@
+../post/_index.md
\ No newline at end of file
diff --git a/content/posts/emoji-support.md b/content/posts/emoji-support.md
new file mode 120000
index 00000000..0b1628f6
--- /dev/null
+++ b/content/posts/emoji-support.md
@@ -0,0 +1 @@
+../post/emoji-support.md
\ No newline at end of file
diff --git a/content/posts/markdown-and-html-syntax.md b/content/posts/markdown-and-html-syntax.md
new file mode 120000
index 00000000..88249129
--- /dev/null
+++ b/content/posts/markdown-and-html-syntax.md
@@ -0,0 +1 @@
+../post/markdown-and-html-syntax.md
\ No newline at end of file
diff --git a/content/posts/math-typesetting.mmark b/content/posts/math-typesetting.mmark
new file mode 120000
index 00000000..c80fd580
--- /dev/null
+++ b/content/posts/math-typesetting.mmark
@@ -0,0 +1 @@
+../post/math-typesetting.mmark
\ No newline at end of file
diff --git a/content/posts/placeholder-text.md b/content/posts/placeholder-text.md
new file mode 120000
index 00000000..390c8156
--- /dev/null
+++ b/content/posts/placeholder-text.md
@@ -0,0 +1 @@
+../post/placeholder-text.md
\ No newline at end of file
diff --git a/content/posts/rich-content.md b/content/posts/rich-content.md
new file mode 120000
index 00000000..9133ceb9
--- /dev/null
+++ b/content/posts/rich-content.md
@@ -0,0 +1 @@
+../post/rich-content.md
\ No newline at end of file
diff --git a/content/v_paw_fk1.svg b/content/v_paw_fk1.svg
new file mode 100644
index 00000000..1753dc1d
--- /dev/null
+++ b/content/v_paw_fk1.svg
@@ -0,0 +1,20 @@
+
\ No newline at end of file