Skip to content

Instantly share code, notes, and snippets.

@zombor
Created June 8, 2010 13:18
Show Gist options
  • Save zombor/429990 to your computer and use it in GitHub Desktop.
Save zombor/429990 to your computer and use it in GitHub Desktop.
<div id="profile_summary_tile">
{{#user}}
<h2>{{username}}</h2>
<ul id="metadata">
<li>Views: {{views}}</li>
<li>Votes: {{vote_count}}</li>
<li>Rating: {{rating_cache}}</li>
</ul>
<ul id="user_actions">
{{^is_friend?}}<li><a href="user/friend/add?username={{username}}">Become friends</a></li>{{/is_friend?}}
{{^blocked?}}<li><a href="user/block/add?username={{username}}">Block</a></li>{{/blocked?}}
{{^saved?}}<li><a href="user/save/add?username={{username}}">Save</a></li>{{/saved?}}
</ul>
{{/user}}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment