summaryrefslogtreecommitdiff
path: root/_config.yml
diff options
context:
space:
mode:
authorJeffrey Tse <jeffreytse.mail@gmail.com>2019-09-11 12:19:34 +0800
committerJeffrey Tse <jeffreytse.mail@gmail.com>2019-09-11 12:21:17 +0800
commit61eae5c5f9881cab29712f6e696085baa977e1f9 (patch)
treebb301b58b94fee5dcefbdfae8f0c8fc13ee5bd21 /_config.yml
parentcd3a8163dd997d0a7c4d320816651efa8f7dce60 (diff)
release: v1.0.0
Diffstat (limited to '_config.yml')
-rw-r--r--_config.yml64
1 files changed, 64 insertions, 0 deletions
diff --git a/_config.yml b/_config.yml
new file mode 100644
index 0000000..2c7db43
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1,64 @@
+# Site settings
+# These are used to personalize your new site. If you look in the HTML files,
+# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
+# You can create any custom variable you would like, and they will be accessible
+# in the templates via {{ site.myvariable }}.
+
+title: Your awesome title
+email: your-email@domain.com
+author: GitHub User
+copyright: Copyright © 1970-2010
+description: >- # this means to ignore newlines until "baseurl:"
+ Write an awesome description for your new site here. You can edit this
+ line in _config.yml. It will appear in your document head meta (for
+ Google search results) and in your feed.xml site description.
+
+baseurl: "" # the subpath of your site, e.g. /blog
+url: "" # the base hostname & protocol for your site, e.g. http://example.com
+
+# Yat date format
+# refer to https://shopify.github.io/liquid/filters/date/ if you want to customize this
+yat:
+ date_format: "%b %-d, %Y"
+
+# If you want more debug log, you can set true
+# debug: true
+
+# If you want to link only specific pages in your header, uncomment
+# this and add the path to the pages in order as they should show up
+# header_pages:
+# - index.html
+# - archives.html
+# - categories.html
+# - tags.html
+
+# Page default value
+# defaults:
+# home:
+# heading: "Your awesome heading"
+# subheading: "Your awesome subheading"
+# banner: "Your image url"
+
+# Pagination setting
+paginate: 5
+
+# Disqus comments
+# disqus:
+# shortname: "Your Disqus username"
+
+# Gitment comments
+# gitment:
+# username: "Your GitHub username"
+# repo: "The repo to store comments"
+# client_id: "Your client ID"
+# client_secret: "Your client secret"
+# redirect_uri: "Your redirect url" # If you use a custom domain name
+
+# Build settings
+markdown: kramdown
+theme: jekyll-theme-yat
+
+plugins:
+ - jekyll-feed
+ - jekyll-seo-tag
+ - jekyll-paginate