_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 : radnetworks
  16. # The production_url is only used when full-domain names are needed
  17. # such as sitemap.txt
  18. # Most places will/should use BASE_PATH to make the urls
  19. #
  20. # If you have set a CNAME (pages.github.com) set your custom domain here.
  21. # Else if you are pushing to username.github.io, replace with your username.
  22. # Finally if you are pushing to a GitHub project page, include the project name at the end.
  23. #
  24. production_url : http://radicalnetworks.org
  25. # All Jekyll-Bootstrap specific configurations are namespaced into this hash
  26. #
  27. JB :
  28. version : 0.3.0
  29. # All links will be namespaced by BASE_PATH if defined.
  30. # Links in your website should always be prefixed with {{BASE_PATH}}
  31. # however this value will be dynamically changed depending on your deployment situation.
  32. #
  33. # CNAME (http://yourcustomdomain.com)
  34. # DO NOT SET BASE_PATH
  35. # (urls will be prefixed with "/" and work relatively)
  36. #
  37. # GitHub Pages (http://username.github.io)
  38. # DO NOT SET BASE_PATH
  39. # (urls will be prefixed with "/" and work relatively)
  40. #
  41. # GitHub Project Pages (http://username.github.io/project-name)
  42. #
  43. # A GitHub Project site exists in the `gh-pages` branch of one of your repositories.
  44. # REQUIRED! Set BASE_PATH to: http://username.github.io/project-name
  45. #
  46. # CAUTION:
  47. # - When in Localhost, your site will run from root "/" regardless of BASE_PATH
  48. # - Only the following values are falsy: ["", null, false]
  49. # - When setting BASE_PATH it must be a valid url.
  50. # This means always setting the protocol (http|https) or prefixing with "/"
  51. BASE_PATH : false
  52. # By default, the asset_path is automatically defined relative to BASE_PATH plus the enabled theme.
  53. # ex: [BASE_PATH]/assets/themes/[THEME-NAME]
  54. #
  55. # Override this by defining an absolute path to assets here.
  56. # ex:
  57. # http://s3.amazonaws.com/yoursite/themes/watermelon
  58. # /assets
  59. #
  60. ASSET_PATH : false
  61. # These paths are to the main pages Jekyll-Bootstrap ships with.
  62. # Some JB helpers refer to these paths; change them here if needed.
  63. #
  64. archive_path: /archive.html
  65. categories_path : /categories.html
  66. tags_path : /tags.html
  67. atom_path : /atom.xml
  68. rss_path : /rss.xml
  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 : disqus
  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 : google
  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.