_config.yml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. participate_path : /participate
  67. policies_path : /policies
  68. # Settings for comments helper
  69. # Set 'provider' to the comment provider you want to use.
  70. # Set 'provider' to false to turn commenting off globally.
  71. #
  72. comments :
  73. provider : false
  74. disqus :
  75. short_name : jekyllbootstrap
  76. livefyre :
  77. site_id : 123
  78. intensedebate :
  79. account : 123abc
  80. facebook :
  81. appid : 123
  82. num_posts: 5
  83. width: 580
  84. colorscheme: light
  85. duoshuo :
  86. short_name : jekyllbootstrap
  87. # Settings for analytics helper
  88. # Set 'provider' to the analytics provider you want to use.
  89. # Set 'provider' to false to turn analytics off globally.
  90. #
  91. analytics :
  92. provider : false
  93. gauges :
  94. site_id : 'SITE ID'
  95. google :
  96. tracking_id : 'UA-123-12'
  97. getclicky :
  98. site_id :
  99. mixpanel :
  100. token : '_MIXPANEL_TOKEN_'
  101. piwik :
  102. baseURL : 'myserver.tld/piwik' # Piwik installation address (without protocol)
  103. idsite : '1' # the id of the site on Piwik
  104. # Settings for sharing helper.
  105. # Sharing is for things like tweet, plusone, like, reddit buttons etc.
  106. # Set 'provider' to the sharing provider you want to use.
  107. # Set 'provider' to false to turn sharing off globally.
  108. #
  109. sharing :
  110. provider : false
  111. # Settings for all other include helpers can be defined by creating
  112. # a hash with key named for the given helper. ex:
  113. #
  114. # pages_list :
  115. # provider : "custom"
  116. #
  117. # Setting any helper's provider to 'custom' will bypass the helper code
  118. # and include your custom code. Your custom file must be defined at:
  119. # ./_includes/custom/[HELPER]
  120. # where [HELPER] is the name of the helper you are overriding.