Created
May 22, 2015 03:55
-
-
Save panphora/dab7f797df50367006a1 to your computer and use it in GitHub Desktop.
This file contains 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 characters
<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