Skip to content

Commit

Permalink
Add twitter bootstrap assets
Browse files Browse the repository at this point in the history
  • Loading branch information
relaxdiego committed Mar 21, 2012
1 parent dfbc8c1 commit 2892473
Show file tree
Hide file tree
Showing 11 changed files with 7,120 additions and 2 deletions.
Binary file added app/assets/images/glyphicons-halflings-white.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/glyphicons-halflings.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions app/assets/javascripts/application.js
Expand Up @@ -13,3 +13,4 @@
//= require jquery
//= require jquery_ujs
//= require common
//= require bootstrap.min
2 changes: 2 additions & 0 deletions app/assets/stylesheets/application.css
Expand Up @@ -11,4 +11,6 @@
*= require_self
*= require scaffolds
*= require common
*= require bootstrap.min
*= require bootstrap-responsive.min
*/
10 changes: 8 additions & 2 deletions app/views/layouts/application.html.erb
Expand Up @@ -8,9 +8,15 @@
</head>
<body>

<p class="notice"><%= notice %></p>
<p class="alert"><%= alert %></p>
<div class="container">
<% if notice %>
<div class="alert alert-success"><%= notice %></div>
<% elsif alert %>
<div class="alert alert-error"><%= alert %></div>
<% end %>
<%= yield %>
</div>

</body>
</html>

0 comments on commit 2892473

Please sign in to comment.