Last active
January 26, 2017 06:45
-
-
Save colormono/0b323f8740b9fcc4ca68fcd8d7035297 to your computer and use it in GitHub Desktop.
The config file of my Jekyll blog.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Colormono's Blog | |
| # These are used to personalize your new site. | |
| # You can create any custom variable you would like. | |
| # Use them from the HTML files: {{ site.title }}, {{ site.email }}, and so on. | |
| # Site settings | |
| title: Rastros | |
| email: [email protected] | |
| description: Apuntes para una mente interdiciplinaria y volátil. | |
| disqus: true | |
| disqus_shortname: 'colormono' | |
| google_analytics: 'UA-XXXXXXXX-X' | |
| #url: "http://colormono.com/blog" # the base hostname & protocol for your site | |
| # Default Layouts | |
| defaults: | |
| - | |
| scope: | |
| type: pages | |
| values: | |
| layout: default | |
| - | |
| scope: | |
| type: posts | |
| values: | |
| layout: post | |
| - | |
| scope: | |
| type: drafts | |
| values: | |
| layout: post | |
| # Where things are | |
| source: . | |
| destination: ./_site | |
| plugins_dir: _plugins | |
| layouts_dir: _layouts | |
| data_dir: _data | |
| includes_dir: _includes | |
| sass: | |
| style: compressed | |
| sass_dir: assets/css | |
| collections: | |
| posts: | |
| output: true | |
| # Handling Reading | |
| safe: false | |
| include: [".htaccess"] | |
| exclude: ["node_modules", "bower-components"] | |
| keep_files: [".git"] | |
| encoding: "utf-8" | |
| markdown_ext: "markdown,mkdown,mkdn,mkd,md" | |
| # Filtering Content | |
| show_drafts: null | |
| limit_posts: 0 | |
| paginate: 20 | |
| future: false | |
| unpublished: false | |
| # Plugins | |
| whitelist: [] | |
| gems: [jekyll-gist, jekyll-paginate] | |
| # Conversion | |
| markdown: kramdown | |
| highlighter: rouge | |
| lsi: false | |
| excerpt_separator: "\n\n" | |
| incremental: false | |
| # Serving | |
| detach: false | |
| port: 4000 | |
| host: 127.0.0.1 | |
| baseurl: "" # does not include hostname | |
| show_dir_listing: false | |
| # Outputting | |
| permalink: /:year/:title/ | |
| paginate_path: /page:num | |
| timezone: America/Argentina/Buenos_Aires |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment