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

github.com/zwbetz-gh/papercss-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-26 05:53:45 +0300
committerZachary Betz <zwbetz@gmail.com>2019-02-26 05:53:45 +0300
commit9e6d56cb855ac610c26ef04ad87385b7338392ad (patch)
treec26d9c1cf78820eb4fab14d093de2b4083b65e7a /exampleSite
parentbed26272852b7771378f9228a2e66a2bc93fa20c (diff)
Base layout, favicons, CSS, content
Diffstat (limited to 'exampleSite')
-rw-r--r--exampleSite/config.toml43
-rw-r--r--exampleSite/config.yaml39
-rw-r--r--exampleSite/content/post/papercss-typography.md147
3 files changed, 229 insertions, 0 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
new file mode 100644
index 0000000..5ff7589
--- /dev/null
+++ b/exampleSite/config.toml
@@ -0,0 +1,43 @@
+baseURL = "https://example.com"
+languageCode = "en-us"
+defaultContentLanguage = "en"
+title = "PaperCSS"
+theme = "papercss-hugo-theme"
+googleAnalytics = "UA-123456789-1"
+
+[taxonomies]
+ tag = "tags"
+
+[permalinks]
+ post = "/:filename/"
+
+[imaging]
+ quality = 99
+
+[params]
+ description = "A Hugo theme made with [PaperCSS](https://www.getpapercss.com/), the less formal CSS framework."
+ homeMetaContent = "A Hugo theme made with PaperCSS, the less formal CSS framework."
+ # For more date formats see https://gohugo.io/functions/format/
+ dateFormat = "Jan 2, 2006"
+
+[menu]
+ [[menu.nav]]
+ name = "Home"
+ url = "/"
+ weight = 1
+ [[menu.nav]]
+ name = "Blog"
+ url = "/post/"
+ weight = 2
+ [[menu.nav]]
+ name = "Tags"
+ url = "/tags/"
+ weight = 3
+ [[menu.nav]]
+ name = "About"
+ url = "/about/"
+ weight = 4
+ [[menu.nav]]
+ name = "RSS"
+ url = "/index.xml"
+ weight = 5
diff --git a/exampleSite/config.yaml b/exampleSite/config.yaml
new file mode 100644
index 0000000..d35f757
--- /dev/null
+++ b/exampleSite/config.yaml
@@ -0,0 +1,39 @@
+baseURL: https://example.com
+languageCode: en-us
+defaultContentLanguage: en
+title: PaperCSS
+theme: papercss-hugo-theme
+googleAnalytics: UA-123456789-1
+
+taxonomies:
+ tag: tags
+
+permalinks:
+ post: /:filename/
+
+imaging:
+ quality: 99
+
+params:
+ description: A Hugo theme made with [PaperCSS](https://www.getpapercss.com/), the less formal CSS framework.
+ homeMetaContent: A Hugo theme made with PaperCSS, the less formal CSS framework.
+ # For more date formats see https://gohugo.io/functions/format/
+ dateFormat: Jan 2, 2006
+
+menu:
+ nav:
+ - name: Home
+ url: /
+ weight: 1
+ - name: Blog
+ url: /post/
+ weight: 2
+ - name: Tags
+ url: /tags/
+ weight: 3
+ - name: About
+ url: /about/
+ weight: 4
+ - name: RSS
+ url: /index.xml
+ weight: 5
diff --git a/exampleSite/content/post/papercss-typography.md b/exampleSite/content/post/papercss-typography.md
new file mode 100644
index 0000000..2557187
--- /dev/null
+++ b/exampleSite/content/post/papercss-typography.md
@@ -0,0 +1,147 @@
+---
+title: "PaperCSS Typography"
+date: 2019-02-22T20:53:58-06:00
+tags: [typography, 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://papercss-hugo-theme.netlify.com/
+
+[PaperCSS Hugo theme](https://papercss-hugo-theme.netlify.com/)
+```
+
+https://papercss-hugo-theme.netlify.com/
+
+[PaperCSS Hugo theme](https://papercss-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.
+```
+
+This `<html>` tag is inline code.
+
+## Block code
+
+````
+This
+
+```
+<html>
+```
+
+tag is block code.
+````
+
+This
+
+```
+<html>
+```
+
+tag is block code. \ No newline at end of file