Created
September 17, 2013 18:03
-
-
Save zsan/6598178 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% if signed_in? %> | |
<div class="row"> | |
<aside class="span4"> | |
<section> | |
<%= render 'shared/user_info' %> | |
</section> | |
<section> | |
<%= render 'shared/stats' %> | |
</section> | |
<section> | |
<%= render 'shared/micropost_form' %> | |
</section> | |
</aside> | |
<div class="span8"> | |
<h3>Micropost Feed</h3> | |
<%= render 'shared/feed' %> | |
</div> | |
</div> | |
<% else %> | |
<div class="center hero-unit"> | |
<h1>Sample App</h1> | |
<h2> | |
This is the home page for the | |
<a href="http://railstutorial.org/">Ruby on Rails Tutorial</a> | |
sample application. | |
</h2> | |
<%= link_to "Sign up now!", signup_path, class: "btn btn-large btn-primary" %> | |
</div> | |
<%= link_to image_tag("rails.png", alt: "Rails"), "http://rubyonrails.org/" %> | |
<% end %> | |
~ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment