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

github.com/zwbetz-gh/cupper-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZachary Betz <zwbetz@gmail.com>2019-02-15 00:53:48 +0300
committerZachary Betz <zwbetz@gmail.com>2019-02-15 00:53:48 +0300
commit8b5fb3132c444e158233bcc967d08c66f17e4c61 (patch)
tree19f5d6b15a4ecd6f4ba523851645fb5778ae2b06 /exampleSite
parent299d50b7ee313a13119ed86fab5c37da10059739 (diff)
Typography post
Diffstat (limited to 'exampleSite')
-rw-r--r--exampleSite/content/post/cupper-shortcodes/index.md2
-rw-r--r--exampleSite/content/post/cupper-typography.md133
2 files changed, 134 insertions, 1 deletions
diff --git a/exampleSite/content/post/cupper-shortcodes/index.md b/exampleSite/content/post/cupper-shortcodes/index.md
index e6c0fce..a8851d9 100644
--- a/exampleSite/content/post/cupper-shortcodes/index.md
+++ b/exampleSite/content/post/cupper-shortcodes/index.md
@@ -1,7 +1,7 @@
---
title: "Cupper Shortcodes"
date: 2019-02-12T23:39:06-06:00
-tags: [hugo]
+tags: [hugo, shortcodes]
---
## blockquote
diff --git a/exampleSite/content/post/cupper-typography.md b/exampleSite/content/post/cupper-typography.md
new file mode 100644
index 0000000..409a037
--- /dev/null
+++ b/exampleSite/content/post/cupper-typography.md
@@ -0,0 +1,133 @@
+---
+title: "Cupper Typography"
+date: 2019-02-14T15:36:09-06:00
+tags: [hugo, markdown]
+---
+
+## Headings
+
+```
+# Heading 1
+## Heading 2
+### Heading 3
+#### Heading 4
+##### Heading 5
+###### Heading 6
+```
+
+# Heading 1
+## Heading 2
+### Heading 3
+#### Heading 4
+##### Heading 5
+###### Heading 6
+
+## Text
+
+```
+*This text will be italic*
+_This will also be italic_
+
+**This text will be bold**
+__This will also be bold__
+
+_You **can** combine them_
+```
+
+*This text will be italic*
+
+_This will also be italic_
+
+**This text will be bold**
+
+__This will also be bold__
+
+_You **can** combine them_
+
+## Lists
+
+### Unordered
+
+```
+* Item 1
+* Item 2
+ * Item 2a
+ * Item 2b
+```
+
+* Item 1
+* Item 2
+ * Item 2a
+ * Item 2b
+
+### Ordered
+
+```
+1. Item 1
+1. Item 2
+1. Item 3
+ 1. Item 3a
+ 1. Item 3b
+```
+
+1. Item 1
+1. Item 2
+1. Item 3
+ 1. Item 3a
+ 1. Item 3b
+
+## Links
+
+```
+https://cupper-hugo-theme.netlify.com/
+
+[Cupper hugo theme](https://cupper-hugo-theme.netlify.com/)
+```
+
+https://cupper-hugo-theme.netlify.com/
+
+[Cupper hugo theme](https://cupper-hugo-theme.netlify.com/)
+
+## Blockquotes
+
+```
+As Kanye West said:
+
+> We're living the future so
+> the present is our past.
+```
+
+As Kanye West said:
+
+> We're living the future so
+> the present is our past.
+
+## Tables
+
+```
+| Animal | Sounds |
+|---------|--------|
+| Cat | Meow |
+| Dog | Woof |
+| Cricket | Chirp |
+```
+
+| Animal | Sounds |
+|---------|--------|
+| Cat | Meow |
+| Dog | Woof |
+| Cricket | Chirp |
+
+## Inline code
+
+This `<html>` tag is inline code.
+
+## Block code
+
+This
+
+```
+<html>
+```
+
+tag is block code. \ No newline at end of file