Commit e6328e38ee23f07da7f124cbdebd6d29b7006d3e

Authored by Rafael Reggiani Manzo
1 parent 22bba08e
Exists in colab and in 2 other branches master, stable

Remove left side menu

Its user related features have been moved to the header and tutorials
are now under mezuro.github.io.

The remaining Kalibro informations were just placeholders and are now
better covered on mezuro.github.io as well.

Signed-off-by: Heitor Reis <marcheing@gmail.com>
CHANGELOG.rdoc
... ... @@ -5,6 +5,7 @@ Prezento is the web interface for Mezuro.
5 5 == Unreleased
6 6  
7 7 * Remove Show button for hotspot metric configurations
  8 +* Remove side menu
8 9  
9 10 == v0.11.3 - 01/04/2016
10 11  
... ...
app/views/layouts/application.html.erb
... ... @@ -49,23 +49,8 @@
49 49  
50 50 <div class="container-fluid">
51 51 <div class="row">
52   - <div class="col-sm-3 col-md-3">
53   - <div class="well sidebar-nav">
54   - <ul class="list-group">
55   - <li class="nav-header"><%= t('tutorials') %></li>
56   - <li class="list-group-item"><%= link_to t('analysis'), tutorials_path('analyzing') %></li>
57   - <li class="list-group-item"><%= link_to t('configuring'), tutorials_path('configuring') %></li>
58   - <li class="list-group-item" ><%= link_to t('keywords'), tutorials_path('keywords') %></li>
59   - <% if content_for?(:sidebar) %>
60   - <%= yield :sidebar %>
61   - <% else %>
62   - <%= render 'shared/short_about' %>
63   - <% end %>
64   - </ul>
65   - </div><!--/.well -->
66   - </div><!--/col-sm-3 col-md-3-->
67   - <div class="col-sm-9 col-md-9">
68   - <div class="alert alert-info" id="loader"><i class="fa fa-spinner fa-spin fa-lg"></i>&nbsp;&nbsp; <%= t('instant_loading_page') %></div>
  52 + <div class="col-sm-12 col-md-12">
  53 + <div class="alert alert-info" id="loader"><i class="fa fa-spinner fa-spin fa-lg"></i>&nbsp;&nbsp; <%= t('instant_loading_page') %></div>
69 54  
70 55 <%= bootstrap_flash %>
71 56 <%= yield %>
... ...