|
| 1 | +# This is the default format. |
| 2 | +# For more see: https://github.com/mojombo/jekyll/wiki/Permalinks |
| 3 | +permalink: /:categories/:year/:month/:day/:title |
| 4 | + |
| 5 | +exclude: [".rvmrc", ".rbenv-version", "README.md", "Rakefile", "changelog.md"] |
| 6 | +auto: true |
| 7 | +pygments: true |
| 8 | + |
| 9 | +# Themes are encouraged to use these universal variables |
| 10 | +# so be sure to set them if your theme uses them. |
| 11 | +# |
| 12 | +title : Pittsburgh TechFest |
| 13 | +tagline: Pittsburgh TechFest is a community-run conference for the developer community in Southwestern Pennsylvania and the surrounding areas. |
| 14 | +author : |
| 15 | + name : Name Lastname |
| 16 | + |
| 17 | + github : username |
| 18 | + twitter : username |
| 19 | + feedburner : feedname |
| 20 | + |
| 21 | +# The production_url is only used when full-domain names are needed |
| 22 | +# such as sitemap.txt |
| 23 | +# Most places will/should use BASE_PATH to make the urls |
| 24 | +# |
| 25 | +# If you have set a CNAME (pages.github.com) set your custom domain here. |
| 26 | +# Else if you are pushing to username.github.com, replace with your username. |
| 27 | +# Finally if you are pushing to a GitHub project page, include the project name at the end. |
| 28 | +# |
| 29 | +production_url : http://pghtechfest.com |
| 30 | + |
| 31 | +# All Jekyll-Bootstrap specific configurations are namespaced into this hash |
| 32 | +# |
| 33 | +JB : |
| 34 | + version : 0.2.9 |
| 35 | + |
| 36 | + # All links will be namespaced by BASE_PATH if defined. |
| 37 | + # Links in your website should always be prefixed with {{BASE_PATH}} |
| 38 | + # however this value will be dynamically changed depending on your deployment situation. |
| 39 | + # |
| 40 | + # CNAME (http://yourcustomdomain.com) |
| 41 | + # DO NOT SET BASE_PATH |
| 42 | + # (urls will be prefixed with "/" and work relatively) |
| 43 | + # |
| 44 | + # GitHub Pages (http://username.github.com) |
| 45 | + # DO NOT SET BASE_PATH |
| 46 | + # (urls will be prefixed with "/" and work relatively) |
| 47 | + # |
| 48 | + # GitHub Project Pages (http://username.github.com/project-name) |
| 49 | + # |
| 50 | + # A GitHub Project site exists in the `gh-pages` branch of one of your repositories. |
| 51 | + # REQUIRED! Set BASE_PATH to: http://username.github.com/project-name |
| 52 | + # |
| 53 | + # CAUTION: |
| 54 | + # - When in Localhost, your site will run from root "/" regardless of BASE_PATH |
| 55 | + # - Only the following values are falsy: ["", null, false] |
| 56 | + # - When setting BASE_PATH it must be a valid url. |
| 57 | + # This means always setting the protocol (http|https) or prefixing with "/" |
| 58 | + BASE_PATH : false |
| 59 | + |
| 60 | + # By default, the asset_path is automatically defined relative to BASE_PATH plus the enabled theme. |
| 61 | + # ex: [BASE_PATH]/assets/themes/[THEME-NAME] |
| 62 | + # |
| 63 | + # Override this by defining an absolute path to assets here. |
| 64 | + # ex: |
| 65 | + # http://s3.amazonaws.com/yoursite/themes/watermelon |
| 66 | + # /assets |
| 67 | + # |
| 68 | + ASSET_PATH : false |
| 69 | + |
| 70 | + # These paths are to the main pages Jekyll-Bootstrap ships with. |
| 71 | + # Some JB helpers refer to these paths; change theme here if needed. |
| 72 | + # |
| 73 | + archive_path: /archive.html |
| 74 | + categories_path : /categories.html |
| 75 | + tags_path : /tags.html |
| 76 | + |
| 77 | + # Settings for comments helper |
| 78 | + # Set 'provider' to the comment provider you want to use. |
| 79 | + # Set 'provider' to false to turn commenting off globally. |
| 80 | + # |
| 81 | + comments : |
| 82 | + provider : disqus |
| 83 | + disqus : |
| 84 | + short_name : jekyllbootstrap |
| 85 | + livefyre : |
| 86 | + site_id : 123 |
| 87 | + intensedebate : |
| 88 | + account : 123abc |
| 89 | + facebook : |
| 90 | + appid : 123 |
| 91 | + num_posts: 5 |
| 92 | + width: 580 |
| 93 | + colorscheme: light |
| 94 | + |
| 95 | + # Settings for analytics helper |
| 96 | + # Set 'provider' to the analytics provider you want to use. |
| 97 | + # Set 'provider' to false to turn analytics off globally. |
| 98 | + # |
| 99 | + analytics : |
| 100 | + provider : google |
| 101 | + google : |
| 102 | + tracking_id : 'UA-123-12' |
| 103 | + getclicky : |
| 104 | + site_id : |
| 105 | + mixpanel : |
| 106 | + token : '_MIXPANEL_TOKEN_' |
| 107 | + |
| 108 | + # Settings for sharing helper. |
| 109 | + # Sharing is for things like tweet, plusone, like, reddit buttons etc. |
| 110 | + # Set 'provider' to the sharing provider you want to use. |
| 111 | + # Set 'provider' to false to turn sharing off globally. |
| 112 | + # |
| 113 | + sharing : |
| 114 | + provider : false |
| 115 | + |
| 116 | + # Settings for all other include helpers can be defined by creating |
| 117 | + # a hash with key named for the given helper. ex: |
| 118 | + # |
| 119 | + # pages_list : |
| 120 | + # provider : "custom" |
| 121 | + # |
| 122 | + # Setting any helper's provider to 'custom' will bypass the helper code |
| 123 | + # and include your custom code. Your custom file must be defined at: |
| 124 | + # ./_includes/custom/[HELPER] |
| 125 | + # where [HELPER] is the name of the helper you are overriding. |
| 126 | + |
0 commit comments