Skip to content

Instantly share code, notes, and snippets.

@atlgeek007
Created October 23, 2013 22:52
Show Gist options
  • Save atlgeek007/7128263 to your computer and use it in GitHub Desktop.
Save atlgeek007/7128263 to your computer and use it in GitHub Desktop.
<% provide(:title, current_user.username) %>
<div class="row">
<aside class="span4">
<section>
<h1>
<%= gravatar_for current_user %>
<%= current_user.username %>
</h1>
</section>
</aside>
<div class="span8">
<% if current_user.short_urls.any? %>
<h3>Shortened URLs (<%= current_user.short_urls.count %>)</h3>
<%= render @short_url %>
<% end %>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment