Created
May 22, 2012 23:33
-
-
Save possibilities/2772348 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// Blue theme | |
<template name="blueTheme"> | |
{{> blueWidget}} | |
{{> anotherBlueWidget}} | |
</template> | |
<template name="blueWidget"> | |
<span class="blue"></span> | |
</template> | |
<template name="anotherBlueWidget"> | |
<div class="blue"></div> | |
</template> | |
// Green theme | |
<template name="greenTheme"> | |
{{> greenWidget}} | |
{{> anotherGreenWidget}} | |
</template> | |
<template name="greenWidget"> | |
<span class="green"></span> | |
</template> | |
<template name="anotherGreenWidget"> | |
<div class="green"></div> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment