Sha256: 6c99a60a825c86c70d3ed70736056ee1e4627db0095c876cec6476936cb12692
Contents?: true
Size: 581 Bytes
Versions: 7
Compression:
Stored size: 581 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>Bootstrap View Helpers Examples</title> <%= stylesheet_link_tag "application", :media => "all" %> <%= javascript_include_tag "application" %> <%= csrf_meta_tags %> </head> <body> <%= render partial: 'bootstrap_view_helper_nav_bar' %> <div class='container-fluid'> <div class='row-fluid'> <div class='span3'> <%= render partial: 'bootstrap_view_helper_side_bar' %> </div> <div class='span9'> <%= yield %> </div> </div> </div> </body> </html>
Version data entries
7 entries across 7 versions & 1 rubygems