Skip to content

Instantly share code, notes, and snippets.

@mfojtik
Created August 5, 2012 16:33
Show Gist options
  • Save mfojtik/3265768 to your computer and use it in GitHub Desktop.
Save mfojtik/3265768 to your computer and use it in GitHub Desktop.
BPR: Sample template
## Gemfile
source :rubygems
gem 'sinatra'
gem 'thin'
## app.rb
require 'sinatra/base'
get '/' do
haml :index
end
## views/index.haml
%div.content=@content
## views/layout.haml
!!!
%html
%head
%link{ :rel => 'stylesheet', :type => 'text/css', :href => '/css/bootstrap.css'}
%link{ :rel => 'stylesheet', :type => 'text/css', :href => '/css/bootstrap.responsive.css'}
## public/css/bootstrap.css -> http://twitter.github.com/bootstrap/assets/css/bootstrap.css
## public/css/bootstrap-responsive.css -> http://twitter.github.com/bootstrap/assets/css/bootstrap-responsive.css
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment