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

github.com/varkai/hugo-theme-zozo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorimzeuk <imzeuk@gmail.com>2019-04-13 17:05:30 +0300
committerimzeuk <imzeuk@gmail.com>2019-04-13 17:05:30 +0300
commit2e8f8b195073717462708d17ac02201a2907f43c (patch)
tree375900948aa45063df119474f55cf384c32a84b9 /exampleSite/content
parentb092d740e6a9ca4d372df3575dc83fdbff44fad1 (diff)
modify any
Diffstat (limited to 'exampleSite/content')
-rw-r--r--exampleSite/content/posts/theme-preview.md150
1 files changed, 150 insertions, 0 deletions
diff --git a/exampleSite/content/posts/theme-preview.md b/exampleSite/content/posts/theme-preview.md
new file mode 100644
index 0000000..2acb54d
--- /dev/null
+++ b/exampleSite/content/posts/theme-preview.md
@@ -0,0 +1,150 @@
+---
+title: "Theme Preview"
+date: 2019-04-13T17:49:40+08:00
+hidden: false
+draft: false
+tags: ["theme"]
+keywords: []
+description: ""
+slug: "Theme Preview"
+---
+
+# Headings
+
+```markdown
+# H1
+## H2
+### H3
+#### H4
+##### H5
+###### H6
+```
+
+# H1
+
+## H2
+
+### H3
+
+#### H4
+
+##### H5
+
+###### H6
+
+# Paragraphs
+
+```markdown
+This is a paragraph.
+I am still part of the paragraph.
+
+New paragraph.
+```
+
+This is a paragraph.
+I am still part of the paragraph.
+
+New paragraph.
+
+# Image
+
+```markdown
+Web Image
+
+![Web Image](https://i.loli.net/2019/04/13/5cb1d33cf0ee6.jpg)
+
+Local Image
+
+![Local Image](100.jpg)
+
+```
+
+Web Image
+
+![Web Image](https://i.loli.net/2019/04/13/5cb1d33cf0ee6.jpg)
+
+Local Image
+
+![Local Image](/100.jpg)
+
+
+# Block Quotes
+
+```markdown
+> This is a block quote
+```
+
+> This is a block quote
+
+# Code Blocks
+
+``````markdown
+```javascript
+// Fenced **with** highlighting
+function doIt() {
+ for (var i = 1; i <= slen ; i^^) {
+ setTimeout("document.z.textdisplay.value = newMake()", i*300);
+ setTimeout("window.status = newMake()", i*300);
+ }
+}
+```
+``````
+
+```javascript
+function doIt() {
+ for (var i = 1; i <= slen ; i^^) {
+ setTimeout("document.z.textdisplay.value = newMake()", i*300);
+ setTimeout("window.status = newMake()", i*300);
+ }
+}
+```
+
+# Tables
+
+```markdown
+| Colors | Fruits | Vegetable |
+| ------------- |:---------------:| -----------------:|
+| Red | *Apple* | [Pepper](#Tables) |
+| ~~Orange~~ | Oranges | **Carrot** |
+| Green | ~~***Pears***~~ | Spinach |
+```
+
+| Colors | Fruits | Vegetable |
+| ------------- |:---------------:| -----------------:|
+| Red | *Apple* | [Pepper](#Tables) |
+| ~~Orange~~ | Oranges | **Carrot** |
+| Green | ~~***Pears***~~ | Spinach |
+
+# List Types
+
+#### Ordered List
+
+```markdown
+1. First item
+2. Second item
+3. Third item
+```
+
+1. First item
+2. Second item
+3. Third item
+
+#### Unordered List
+
+```markdown
+- First item
+- Second item
+- Third item
+```
+
+- First item
+- Second item
+- Third item
+
+# Emoji
+
+This is a test for emoji.
+:smile:
+:see_no_evil:
+:smile_cat:
+:watermelon: \ No newline at end of file