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