-
-
Save SmileyChris/711075 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 user %} | |
<div class="left_column"> | |
{% endif %} | |
{% block content %} | |
{% endblock %} | |
{% if user %} | |
</div> | |
<div class="right_column"> | |
<div class="sidebar_header user_info"> | |
<h2>Welcome.</h2> | |
</div> | |
<div class="sidebar_content"> | |
<div class="blog_title"><%= current_user.blog_title %></div> | |
<ul> | |
<li><a href="/dashboard">dashboard</a></li> | |
<li><a href="http://foo.squidd.me">visit your blog</a></li> | |
<li><a href="/settings">settings</a></li> | |
<li><a href="/logout">log out</a></li> | |
</ul> | |
<div class="blog_title">Followers</div> | |
<ul> | |
<li>you have <a href="#">0 followers</a></li> | |
<il>you're following <a href="#">0 people</a></li> | |
</ul> | |
</div> | |
</div> | |
{% endif %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment