Velocipede's User, Sales, and Bike Inventory Web App
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
!!! 5
|
|
|
|
%html{:lang => "en"}
|
|
|
|
%head
|
|
|
|
%meta{:charset => "utf-8"}/
|
|
|
|
%title= content_for?(:title) ? yield(:title) : "Velocipede"
|
|
|
|
= load_netzke
|
|
|
|
= csrf_meta_tags
|
|
|
|
/[if lt IE 9]
|
|
|
|
= javascript_include_tag "http://html5shim.googlecode.com/svn/trunk/html5.js"
|
|
|
|
:css
|
|
|
|
body {
|
|
|
|
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
|
|
|
|
}
|
|
|
|
.x-boundlist-item {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
%body
|
|
|
|
.container
|
|
|
|
|
|
|
|
.content
|
|
|
|
- if flash[:notice]
|
|
|
|
%p{:class => 'notice'}= flash[:notice]
|
|
|
|
- if flash[:alert]
|
|
|
|
%p{:class => 'alert'}= flash[:alert]
|
|
|
|
.row
|
|
|
|
.span13
|
|
|
|
= yield
|
|
|
|
|
|
|
|
%footer
|
|
|
|
%p © Velocipede 2013
|
|
|
|
|
|
|
|
= javascript_include_tag "application"
|
|
|
|
= javascript_include_tag params[:controller]
|