Skip to content

Instantly share code, notes, and snippets.

@jakehow
Created April 20, 2012 20:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jakehow/2431758 to your computer and use it in GitHub Desktop.
Save jakehow/2431758 to your computer and use it in GitHub Desktop.
Ember Conditional
{{#if MyApp.currentUser}}
<ul>
<li>Welcome, {{ MyApp.currentUser.name}} | <a href="#" {{action "logout" on="click"}}>Log Out</a></li>
</ul>
{{else}}
<ul>
<li><a href="#" {{action "showLogin" on="click"}}>Log In</a></li>
</ul>
{{/if}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment