_config.yml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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"]
  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 : http://radicalnetworks.org
  26. # All Jekyll-Bootstrap specific configurations are namespaced into this hash
  27. #
  28. JB :
  29. version : 0.3.0
  30. # All links will be namespaced by BASE_PATH if defined.
  31. # Links in your website should always be prefixed with {{BASE_PATH}}
  32. # however this value will be dynamically changed depending on your deployment situation.
  33. #
  34. # CNAME (http://yourcustomdomain.com)
  35. # DO NOT SET BASE_PATH
  36. # (urls will be prefixed with "/" and work relatively)
  37. #
  38. # GitHub Pages (http://username.github.io)
  39. # DO NOT SET BASE_PATH
  40. # (urls will be prefixed with "/" and work relatively)
  41. #
  42. # GitHub Project Pages (http://username.github.io/project-name)
  43. #
  44. # A GitHub Project site exists in the `gh-pages` branch of one of your repositories.
  45. # REQUIRED! Set BASE_PATH to: http://username.github.io/project-name
  46. #
  47. # CAUTION:
  48. # - When in Localhost, your site will run from root "/" regardless of BASE_PATH
  49. # - Only the following values are falsy: ["", null, false]
  50. # - When setting BASE_PATH it must be a valid url.
  51. # This means always setting the protocol (http|https) or prefixing with "/"
  52. BASE_PATH : false
  53. # By default, the asset_path is automatically defined relative to BASE_PATH plus the enabled theme.
  54. # ex: [BASE_PATH]/assets/themes/[THEME-NAME]
  55. #
  56. # Override this by defining an absolute path to assets here.
  57. # ex:
  58. # http://s3.amazonaws.com/yoursite/themes/watermelon
  59. # /assets
  60. #
  61. ASSET_PATH : false
  62. # These paths are to the main pages Jekyll-Bootstrap ships with.
  63. # Some JB helpers refer to these paths; change them here if needed.
  64. #
  65. about_path: /about
  66. speakers_path : /speakers
  67. program_path : /program
  68. policies_path : /policies
  69. # Settings for comments helper
  70. # Set 'provider' to the comment provider you want to use.
  71. # Set 'provider' to false to turn commenting off globally.
  72. #
  73. comments :
  74. provider : false
  75. disqus :
  76. short_name : jekyllbootstrap
  77. livefyre :
  78. site_id : 123
  79. intensedebate :
  80. account : 123abc
  81. facebook :
  82. appid : 123
  83. num_posts: 5
  84. width: 580
  85. colorscheme: light
  86. duoshuo :
  87. short_name : jekyllbootstrap
  88. # Settings for analytics helper
  89. # Set 'provider' to the analytics provider you want to use.
  90. # Set 'provider' to false to turn analytics off globally.
  91. #
  92. analytics :
  93. provider : false
  94. gauges :
  95. site_id : 'SITE ID'
  96. google :
  97. tracking_id : 'UA-123-12'
  98. getclicky :
  99. site_id :
  100. mixpanel :
  101. token : '_MIXPANEL_TOKEN_'
  102. piwik :
  103. baseURL : 'myserver.tld/piwik' # Piwik installation address (without protocol)
  104. idsite : '1' # the id of the site on Piwik
  105. # Settings for sharing helper.
  106. # Sharing is for things like tweet, plusone, like, reddit buttons etc.
  107. # Set 'provider' to the sharing provider you want to use.
  108. # Set 'provider' to false to turn sharing off globally.
  109. #
  110. sharing :
  111. provider : false
  112. # Settings for all other include helpers can be defined by creating
  113. # a hash with key named for the given helper. ex:
  114. #
  115. # pages_list :
  116. # provider : "custom"
  117. #
  118. # Setting any helper's provider to 'custom' will bypass the helper code
  119. # and include your custom code. Your custom file must be defined at:
  120. # ./_includes/custom/[HELPER]
  121. # where [HELPER] is the name of the helper you are overriding.