2014-11-06 14:46:59 +01:00
|
|
|
<h1>StaticPages#home</h1>
|
|
|
|
<p>Find me in app/views/static_pages/home.html.erb</p>
|
2014-11-06 18:30:53 +01:00
|
|
|
|
2014-11-10 02:30:42 +01:00
|
|
|
<% if logged_in? %>
|
|
|
|
<div class="row">
|
|
|
|
<aside class="col-md-4">
|
|
|
|
<section class="user_info">
|
|
|
|
<%= render 'shared/user_info' %>
|
|
|
|
</section>
|
|
|
|
<section class="order_form">
|
|
|
|
<%= render 'shared/order_form' %>
|
|
|
|
</section>
|
|
|
|
</aside>
|
|
|
|
<div class="col-md-8">
|
|
|
|
<h3>User logs</h3>
|
|
|
|
<%= render 'shared/feed' %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% else %>
|
|
|
|
|
|
|
|
<%= link_to "Sign up now!", signup_path , class: "btn btn-lg btn-primary" %>
|
|
|
|
|
|
|
|
|
|
|
|
<% end %>
|