_config.yml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. # This is the default format.
  2. # For more see: http://jekyllrb.com/docs/permalinks/
  3. permalink: /:categories/:year/:month/:day/:title
  4. exclude: [".rvmrc", ".rbenv-version", "README.md", "Rakefile", "changelog.md", "Gemfile", "Gemfile.lock"]
  5. highlighter: pygments
  6. # Themes are encouraged to use these universal variables
  7. # so be sure to set them if your theme uses them.
  8. #
  9. title : Radical Networks
  10. tagline:
  11. author :
  12. name : Radical Networks
  13. email : info@radicalnetworks.org
  14. github : chootka
  15. twitter : radnets
  16. feedburner :
  17. # The production_url is only used when full-domain names are needed
  18. # such as sitemap.txt
  19. # Most places will/should use BASE_PATH to make the urls
  20. #
  21. # If you have set a CNAME (pages.github.com) set your custom domain here.
  22. # Else if you are pushing to username.github.io, replace with your username.
  23. # Finally if you are pushing to a GitHub project page, include the project name at the end.
  24. #
  25. production_url : https://radicalnetworks.org
  26. # Collections
  27. collections:
  28. participants:
  29. output: true
  30. # All Jekyll-Bootstrap specific configurations are namespaced into this hash
  31. #
  32. JB :
  33. version : 0.3.0
  34. # All links will be namespaced by BASE_PATH if defined.
  35. # Links in your website should always be prefixed with {{BASE_PATH}}
  36. # however this value will be dynamically changed depending on your deployment situation.
  37. #
  38. # CNAME (http://yourcustomdomain.com)
  39. # DO NOT SET BASE_PATH
  40. # (urls will be prefixed with "/" and work relatively)
  41. #
  42. # GitHub Pages (http://username.github.io)
  43. # DO NOT SET BASE_PATH
  44. # (urls will be prefixed with "/" and work relatively)
  45. #
  46. # GitHub Project Pages (http://username.github.io/project-name)
  47. #
  48. # A GitHub Project site exists in the `gh-pages` branch of one of your repositories.
  49. # REQUIRED! Set BASE_PATH to: http://username.github.io/project-name
  50. #
  51. # CAUTION:
  52. # - When in Localhost, your site will run from root "/" regardless of BASE_PATH
  53. # - Only the following values are falsy: ["", null, false]
  54. # - When setting BASE_PATH it must be a valid url.
  55. # This means always setting the protocol (http|https) or prefixing with "/"
  56. BASE_PATH : false
  57. # By default, the asset_path is automatically defined relative to BASE_PATH plus the enabled theme.
  58. # ex: [BASE_PATH]/assets/themes/[THEME-NAME]
  59. #
  60. # Override this by defining an absolute path to assets here.
  61. # ex:
  62. # http://s3.amazonaws.com/yoursite/themes/watermelon
  63. # /assets
  64. #
  65. ASSET_PATH : false
  66. # These paths are to the main pages Jekyll-Bootstrap ships with.
  67. # Some JB helpers refer to these paths; change them here if needed.
  68. #
  69. # about_path: /about
  70. # speakers_path : /speakers
  71. # program_path : /program
  72. # policies_path : /policies
  73. # Settings for comments helper
  74. # Set 'provider' to the comment provider you want to use.
  75. # Set 'provider' to false to turn commenting off globally.
  76. #
  77. comments :
  78. provider : false
  79. disqus :
  80. short_name : jekyllbootstrap
  81. livefyre :
  82. site_id : 123
  83. intensedebate :
  84. account : 123abc
  85. facebook :
  86. appid : 123
  87. num_posts: 5
  88. width: 580
  89. colorscheme: light
  90. duoshuo :
  91. short_name : jekyllbootstrap
  92. # Settings for analytics helper
  93. # Set 'provider' to the analytics provider you want to use.
  94. # Set 'provider' to false to turn analytics off globally.
  95. #
  96. analytics :
  97. provider : false
  98. gauges :
  99. site_id : 'SITE ID'
  100. google :
  101. tracking_id : 'UA-123-12'
  102. getclicky :
  103. site_id :
  104. mixpanel :
  105. token : '_MIXPANEL_TOKEN_'
  106. piwik :
  107. baseURL : 'myserver.tld/piwik' # Piwik installation address (without protocol)
  108. idsite : '1' # the id of the site on Piwik
  109. # Settings for sharing helper.
  110. # Sharing is for things like tweet, plusone, like, reddit buttons etc.
  111. # Set 'provider' to the sharing provider you want to use.
  112. # Set 'provider' to false to turn sharing off globally.
  113. #
  114. sharing :
  115. provider : false
  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.