mirror of
https://github.com/cotes2020/jekyll-theme-chirpy.git
synced 2025-12-18 05:41:31 +00:00
Import the framework.
This commit is contained in:
166
_config.yml
Normal file
166
_config.yml
Normal file
@@ -0,0 +1,166 @@
|
||||
# The Site Settings
|
||||
# © 2017-2019 Cotes Chung
|
||||
# MIT licensed
|
||||
|
||||
|
||||
# jekyll-seo-tag settings › https://github.com/jekyll/jekyll-seo-tag/blob/master/docs/usage.md
|
||||
#--------------------------
|
||||
|
||||
title: Chirpy
|
||||
|
||||
description: 'A text-based Jekyll theme.'
|
||||
|
||||
# Replace with your domain, e.g. "https://username.github.io"
|
||||
url: 'https://www.example.com'
|
||||
|
||||
author: Chirpy # change to your full name
|
||||
|
||||
logo: /assets/img/sample/profile.jpg # Support network resources.
|
||||
|
||||
github:
|
||||
username: github_username # change to your github username
|
||||
|
||||
twitter:
|
||||
username: twitter_username # change to your twitter username
|
||||
|
||||
social:
|
||||
name: Chirpy # change to your full name
|
||||
email: example@doamin.com # change to your email address
|
||||
links:
|
||||
- https://twitter.com/username # change to your twitter homepage
|
||||
- https://github.com/username # change to your github homepage
|
||||
# - https://www.facebook.com/username
|
||||
# - https://www.linkedin.com/in/username
|
||||
|
||||
google_site_verification: google_meta_tag_verification # change to your verification string
|
||||
|
||||
#--------------------------
|
||||
|
||||
# Change to your Google Analytics ID
|
||||
google_analytics:
|
||||
id: 'UA-*********-*'
|
||||
# Switch for Google Analytics pageviews. DO NOT enable it unless you know how to deploy the Google Analytics superProxy.
|
||||
pv: false
|
||||
|
||||
disqus:
|
||||
shortname: 'disqus' # Change to your Disqus shortname.
|
||||
comments: true # boolean type, the gobal switch of posts' comments.
|
||||
|
||||
# The year your website was first run.
|
||||
first_run: 2019
|
||||
|
||||
# boolean type, gobal switch for ToC in posts.
|
||||
toc: true
|
||||
|
||||
|
||||
# if your site type is Project Pages site, change below value to '/projectname'
|
||||
baseurl: ''
|
||||
|
||||
paginate: 10
|
||||
|
||||
markdown: kramdown
|
||||
|
||||
highlighter: rouge
|
||||
|
||||
kramdown:
|
||||
input: GFM
|
||||
syntax_highlighter: rouge
|
||||
syntax_highlighter_opts: # Rouge Options › https://github.com/jneen/rouge#full-options
|
||||
css_class: 'highlight'
|
||||
# default_lang: console
|
||||
span:
|
||||
line_numbers: false
|
||||
block:
|
||||
line_numbers: true
|
||||
start_line: 1
|
||||
|
||||
permalink: /posts/:title/
|
||||
|
||||
defaults:
|
||||
-
|
||||
scope:
|
||||
path: "" # An empty string here means all files in the project
|
||||
type: posts
|
||||
values:
|
||||
layout: post
|
||||
comments: true # Enable comments in posts.
|
||||
toc: true # Display TOC column in posts.
|
||||
location: Post
|
||||
breadcrumb:
|
||||
-
|
||||
label: Posts
|
||||
url: /
|
||||
-
|
||||
scope:
|
||||
path: _drafts
|
||||
values:
|
||||
comments: false
|
||||
-
|
||||
scope:
|
||||
path: tags
|
||||
values:
|
||||
location: Tag
|
||||
breadcrumb:
|
||||
-
|
||||
label: Home
|
||||
url: /
|
||||
-
|
||||
label: Tags
|
||||
url: /tabs/tags/
|
||||
-
|
||||
scope:
|
||||
path: categories
|
||||
values:
|
||||
location: Category
|
||||
breadcrumb:
|
||||
-
|
||||
label: Home
|
||||
url: /
|
||||
-
|
||||
label: Categories
|
||||
url: /tabs/categories/
|
||||
-
|
||||
scope:
|
||||
path: tabs
|
||||
values:
|
||||
layout: page
|
||||
dynamic_title: true # hide title in mobile screens.
|
||||
breadcrumb:
|
||||
-
|
||||
label: Home
|
||||
url: /
|
||||
|
||||
timezone: Asia/Shanghai
|
||||
|
||||
sass:
|
||||
sass_dir: /assets/css
|
||||
style: compressed
|
||||
|
||||
compress_html:
|
||||
clippings: all
|
||||
comments: ["<!-- ", " -->"]
|
||||
endings: [html, head, body, dt, dd, rt, rp, optgroup, option, colgroup, caption, thead, tbody, tfoot, tr, td, th]
|
||||
profile: false
|
||||
blanklines: false
|
||||
ignore:
|
||||
envs: []
|
||||
|
||||
exclude:
|
||||
- vendor/ # Avoid Jekyll mistakenly read the vender directory in Travis-CI's VM .
|
||||
- Gemfile.lock
|
||||
- Gemfile
|
||||
- run.sh
|
||||
- build.sh
|
||||
- init.sh
|
||||
- pv.sh
|
||||
|
||||
sitemap_exclude: # Sitemap will exclude the following items.
|
||||
- /norobots/
|
||||
- /assets/
|
||||
- /tabs/
|
||||
- /categories/
|
||||
- /tags/
|
||||
- /posts/
|
||||
- /404.html
|
||||
- /redirects.json
|
||||
- /search.json
|
||||
Reference in New Issue
Block a user