|
| 1 | +# The Site Settings |
| 2 | +# © 2017-2019 Cotes Chung |
| 3 | +# MIT licensed |
| 4 | + |
| 5 | + |
| 6 | +# jekyll-seo-tag settings › https://github.com/jekyll/jekyll-seo-tag/blob/master/docs/usage.md |
| 7 | +#-------------------------- |
| 8 | + |
| 9 | +title: Chirpy |
| 10 | + |
| 11 | +description: 'A text-based Jekyll theme.' |
| 12 | + |
| 13 | +# Replace with your domain, e.g. "https://username.github.io" |
| 14 | +url: 'https://www.example.com' |
| 15 | + |
| 16 | +author: Chirpy # change to your full name |
| 17 | + |
| 18 | +logo: /assets/img/sample/profile.jpg # Support network resources. |
| 19 | + |
| 20 | +github: |
| 21 | + username: github_username # change to your github username |
| 22 | + |
| 23 | +twitter: |
| 24 | + username: twitter_username # change to your twitter username |
| 25 | + |
| 26 | +social: |
| 27 | + name: Chirpy # change to your full name |
| 28 | + email: [email protected] # change to your email address |
| 29 | + links: |
| 30 | + - https://twitter.com/username # change to your twitter homepage |
| 31 | + - https://github.com/username # change to your github homepage |
| 32 | + # - https://www.facebook.com/username |
| 33 | + # - https://www.linkedin.com/in/username |
| 34 | + |
| 35 | +google_site_verification: google_meta_tag_verification # change to your verification string |
| 36 | + |
| 37 | +#-------------------------- |
| 38 | + |
| 39 | +# Change to your Google Analytics ID |
| 40 | +google_analytics: |
| 41 | + id: 'UA-*********-*' |
| 42 | + # Switch for Google Analytics pageviews. DO NOT enable it unless you know how to deploy the Google Analytics superProxy. |
| 43 | + pv: false |
| 44 | + |
| 45 | +disqus: |
| 46 | + shortname: 'disqus' # Change to your Disqus shortname. |
| 47 | + comments: true # boolean type, the gobal switch of posts' comments. |
| 48 | + |
| 49 | +# The year your website was first run. |
| 50 | +first_run: 2019 |
| 51 | + |
| 52 | +# boolean type, gobal switch for ToC in posts. |
| 53 | +toc: true |
| 54 | + |
| 55 | + |
| 56 | +# if your site type is Project Pages site, change below value to '/projectname' |
| 57 | +baseurl: '' |
| 58 | + |
| 59 | +paginate: 10 |
| 60 | + |
| 61 | +markdown: kramdown |
| 62 | + |
| 63 | +highlighter: rouge |
| 64 | + |
| 65 | +kramdown: |
| 66 | + input: GFM |
| 67 | + syntax_highlighter: rouge |
| 68 | + syntax_highlighter_opts: # Rouge Options › https://github.com/jneen/rouge#full-options |
| 69 | + css_class: 'highlight' |
| 70 | + # default_lang: console |
| 71 | + span: |
| 72 | + line_numbers: false |
| 73 | + block: |
| 74 | + line_numbers: true |
| 75 | + start_line: 1 |
| 76 | + |
| 77 | +permalink: /posts/:title/ |
| 78 | + |
| 79 | +defaults: |
| 80 | + - |
| 81 | + scope: |
| 82 | + path: "" # An empty string here means all files in the project |
| 83 | + type: posts |
| 84 | + values: |
| 85 | + layout: post |
| 86 | + comments: true # Enable comments in posts. |
| 87 | + toc: true # Display TOC column in posts. |
| 88 | + location: Post |
| 89 | + breadcrumb: |
| 90 | + - |
| 91 | + label: Posts |
| 92 | + url: / |
| 93 | + - |
| 94 | + scope: |
| 95 | + path: _drafts |
| 96 | + values: |
| 97 | + comments: false |
| 98 | + - |
| 99 | + scope: |
| 100 | + path: tags |
| 101 | + values: |
| 102 | + location: Tag |
| 103 | + breadcrumb: |
| 104 | + - |
| 105 | + label: Home |
| 106 | + url: / |
| 107 | + - |
| 108 | + label: Tags |
| 109 | + url: /tabs/tags/ |
| 110 | + - |
| 111 | + scope: |
| 112 | + path: categories |
| 113 | + values: |
| 114 | + location: Category |
| 115 | + breadcrumb: |
| 116 | + - |
| 117 | + label: Home |
| 118 | + url: / |
| 119 | + - |
| 120 | + label: Categories |
| 121 | + url: /tabs/categories/ |
| 122 | + - |
| 123 | + scope: |
| 124 | + path: tabs |
| 125 | + values: |
| 126 | + layout: page |
| 127 | + dynamic_title: true # hide title in mobile screens. |
| 128 | + breadcrumb: |
| 129 | + - |
| 130 | + label: Home |
| 131 | + url: / |
| 132 | + |
| 133 | +timezone: Asia/Shanghai |
| 134 | + |
| 135 | +sass: |
| 136 | + sass_dir: /assets/css |
| 137 | + style: compressed |
| 138 | + |
| 139 | +compress_html: |
| 140 | + clippings: all |
| 141 | + comments: ["<!-- ", " -->"] |
| 142 | + endings: [html, head, body, dt, dd, rt, rp, optgroup, option, colgroup, caption, thead, tbody, tfoot, tr, td, th] |
| 143 | + profile: false |
| 144 | + blanklines: false |
| 145 | + ignore: |
| 146 | + envs: [] |
| 147 | + |
| 148 | +exclude: |
| 149 | + - vendor/ # Avoid Jekyll mistakenly read the vender directory in Travis-CI's VM . |
| 150 | + - Gemfile.lock |
| 151 | + - Gemfile |
| 152 | + - run.sh |
| 153 | + - build.sh |
| 154 | + - init.sh |
| 155 | + - pv.sh |
| 156 | + |
| 157 | +sitemap_exclude: # Sitemap will exclude the following items. |
| 158 | + - /norobots/ |
| 159 | + - /assets/ |
| 160 | + - /tabs/ |
| 161 | + - /categories/ |
| 162 | + - /tags/ |
| 163 | + - /posts/ |
| 164 | + - /404.html |
| 165 | + - /redirects.json |
| 166 | + - /search.json |
0 commit comments