Sha256: 6486a3c6cb5450f8d67d86e76fdf1a65c3929e51f77f58ce7b391d6f9c758de7
Contents?: true
Size: 1.03 KB
Versions: 5
Compression:
Stored size: 1.03 KB
Contents
# Customize Fuel Fuel.configure do |config| # Change the layout to render with the blog config.layout = "application" # Change title of blog config.blog_title = "Blog" # Change description of blog # config.blog_description = "A list of posts about a topic" # Set site name config.site_name = nil # Change admin username config.username = "admin" # Change admin password config.password = "password" # Change number of posts to show per page on blog config.paginates_per = 5 config.tags = ["Customize", "These", "Options", "In", "config/initializers/fuel.rb"] config.helpers = ["ApplicationHelper", #"another_helper", ] config.featured_image_settings = { styles: { thumb: "100x100#", medium: "300x300#" } } config.avatar_settings = { styles: { thumb: "100x100#", medium: "300x300#" } } # config.facebook_app_id = "318506165696214" # Add Disqus #config.disqus_name = 'your_disqus_name' # Add Twitter #config.twitter = true end
Version data entries
5 entries across 5 versions & 1 rubygems