forked from pjotrp/biogems.info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.rb
38 lines (26 loc) · 876 Bytes
/
config.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
require 'lib/helpers/content_helpers'
require 'lib/helpers/biolinux_helpers'
helpers ContentHelpers
helpers BiolinuxHelpers
page "/usersmap.html", :layout => "usersmap_layout"
page "/bioruby.html", :layout => "bioruby_layout"
page "/news.html", :layout => "news_layout"
# Automatic image dimensions on image_tag helper
# activate :automatic_image_sizes
# Reload the browser automatically whenever files change
activate :livereload
set :css_dir, 'stylesheets'
set :js_dir, 'javascripts'
set :images_dir, 'images'
configure :build do
# For example, change the Compass output style for deployment
# activate :minify_css
# Minify Javascript on build
# activate :minify_javascript
# Enable cache buster
# activate :asset_hash
# Use relative URLs
# activate :relative_assets
# Or use a different image path
# set :http_prefix, "/Content/images/"
end