Skip to content

Instantly share code, notes, and snippets.

@panphora
Created May 22, 2015 03:55
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 panphora/dab7f797df50367006a1 to your computer and use it in GitHub Desktop.
Save panphora/dab7f797df50367006a1 to your computer and use it in GitHub Desktop.
<template name="DiscoverPage">
<div class="nav">
<a class="tab-link {{selectedIfCurrentTabIs 'recent projects'}}" href="#" data-tab-name="recent projects">recent projects</a>
<a class="tab-link {{selectedIfCurrentTabIs 'recent sketches'}}" href="#" data-tab-name="recent sketches">recent sketches</a>
</div>
{{#if currentTabIs 'recent projects'}}
{{> RecentProjects }}
{{/if}}
{{#if currentTabIs 'recent sketches'}}
{{> RecentSketches }}
{{/if}}
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment