diff options
| author | mo khan <mo@mokhan.ca> | 2014-08-23 11:35:21 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2014-08-23 11:35:21 -0600 |
| commit | 9b3c7c6ea92dfad3ea2e8df9c47972499ca84963 (patch) | |
| tree | fd246378ddf0e1d1863a25e145db79ebb0ee3cf6 /app/views/tutorials | |
| parent | d8cb949e7c9482dae4d5d98d62589614c2527a8f (diff) | |
change to fluid layout.
Diffstat (limited to 'app/views/tutorials')
| -rw-r--r-- | app/views/tutorials/edit.html.erb | 2 | ||||
| -rw-r--r-- | app/views/tutorials/index.html.erb | 4 | ||||
| -rw-r--r-- | app/views/tutorials/new.html.erb | 4 | ||||
| -rw-r--r-- | app/views/tutorials/show.html.erb | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/app/views/tutorials/edit.html.erb b/app/views/tutorials/edit.html.erb index 55bced59..513822fd 100644 --- a/app/views/tutorials/edit.html.erb +++ b/app/views/tutorials/edit.html.erb @@ -1,5 +1,5 @@ <% provide(:title, "Edit tutorial") -%> -<div class="row"> +<div class="row-fluid"> <h1>Editing tutorial</h1> <%= render 'form' %> </div> diff --git a/app/views/tutorials/index.html.erb b/app/views/tutorials/index.html.erb index 17794fa7..b5d3f322 100644 --- a/app/views/tutorials/index.html.erb +++ b/app/views/tutorials/index.html.erb @@ -4,7 +4,7 @@ $(function(){ new Masonry('#tutorials-div').load(); }); </script> <% end -%> -<div id="tutorials-div" class="row"> +<div id="tutorials-div" class="row-fluid"> <div class="span12"> <ul class="thumbnails"> <% @tutorials.each do |tutorial| %> @@ -29,6 +29,6 @@ </ul> </div> </div> -<div class="row"> +<div class="row-fluid"> <div class="span12 text-center"> <%= paginate @tutorials %> </div> </div> diff --git a/app/views/tutorials/new.html.erb b/app/views/tutorials/new.html.erb index 7c1f3914..cae294e8 100644 --- a/app/views/tutorials/new.html.erb +++ b/app/views/tutorials/new.html.erb @@ -1,9 +1,9 @@ <% provide(:title, "Share a tutorial link") -%> -<div class="row"> +<div class="row-fluid"> <div class="span12"> <h1>Share a tutorial link</h1> </div> </div> -<div class="row"> +<div class="row-fluid"> <%= render 'form' %> </div> diff --git a/app/views/tutorials/show.html.erb b/app/views/tutorials/show.html.erb index 853e6029..20f867df 100644 --- a/app/views/tutorials/show.html.erb +++ b/app/views/tutorials/show.html.erb @@ -1,4 +1,4 @@ -<div class="row"> +<div class="row-fluid"> <div class="span12"> <div class="thumbnail"> <img src="<%= @tutorial.image_url %>" /> |
