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

github.com/zwbetz-gh/cayman-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzwbetz <zwbetz@gmail.com>2019-04-02 22:11:51 +0300
committerzwbetz <zwbetz@gmail.com>2019-04-02 22:11:51 +0300
commit039d5671ec331611da5228057abb378196ca8ab9 (patch)
tree409304e37163e6e926380ec10a61881422eb4a17
parent267fad71654de294f50690a374d1aa7717557419 (diff)
Add config.yaml
-rw-r--r--exampleSite/config.yaml72
1 files changed, 72 insertions, 0 deletions
diff --git a/exampleSite/config.yaml b/exampleSite/config.yaml
new file mode 100644
index 0000000..3d741b5
--- /dev/null
+++ b/exampleSite/config.yaml
@@ -0,0 +1,72 @@
+baseURL: https://example.com
+languageCode: en-us
+defaultContentLanguage: en
+title: Cayman
+theme: cayman-hugo-theme
+
+# Google analytics
+googleAnalytics: UA-123456789-1
+
+# Disqus comments
+disqusShortname: yourdiscussshortname
+
+# Syntax highlighting
+pygmentsCodefences: true
+pygmentsStyle: pygments
+
+taxonomies:
+ tag: tags
+
+permalinks:
+ post: /:filename/
+
+params:
+ # Header text, can be markdown
+ # project_name: Cayman Hugo Theme
+ project_tagline: A clean, responsive Hugo theme, ported from the original Jekyll Caymen theme
+
+ # Date format for post list and single pages
+ # For more date formats see https://gohugo.io/functions/format/
+ dateFormat: 2006-01-02
+
+ # Footer text, can be markdown
+ footer: Made with [Hugo](https://gohugo.io/). Themed by [Cayman](https://github.com/zwbetz-gh/cayman-hugo-theme). Deployed to [Netlify](https://www.netlify.com/).
+
+ # Breakpoints
+ large_breakpoint: 64em
+ medium_breakpoint: 42em
+
+ # Header colors
+ header_heading_color: #fff
+ header_background_color: #159957
+ header_background_color_secondary: #155799
+
+ # Text colors
+ section_headings_color: #159957
+ body_text_color: #606c71
+ body_link_color: #1e6bb8
+ blockquote_text_color: #819198
+
+ # Code colors
+ code_background_color: #f3f6fa
+ code_text_color: #567482
+
+ # Border colors
+ border_color: #dce6f0
+ table_border_color: #e9ebec
+ hr_border_color: #eff0f1
+
+menu:
+ nav:
+ - name: Blog
+ url: /
+ weight: 1
+ - name: Tags
+ url: /tags/
+ weight: 2
+ - name: About
+ url: /about/
+ weight: 3
+ - name: RSS
+ url: /index.xml
+ weight: 4