Created
November 23, 2010 01:17
Revisions
-
cmelbye created this gist
Nov 23, 2010 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,29 @@ {% if user %} <div class="left_column"> {% block content %} {% endblock %} </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> {% else %} {% block content %} {% endblock %} {% endif %}