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