Created
February 8, 2015 20:39
-
-
Save AshleyGrant/17ae61d9a425ba6f111b 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> | |
<section> | |
<h2>${heading}</h2> | |
<div> | |
<div class="col-md-2"> | |
<ul class="well nav nav-pills nav-stacked"> | |
<li repeat.for="row of router.navigation" class="${row.isActive ? 'active' : ''}"> | |
<a href.bind="row.href">${row.title}</a> | |
${heading} | |
</li> | |
</ul> | |
</div> | |
<div class="col-md-10" style="padding: 0"> | |
<router-view></router-view> | |
</div> | |
</div> | |
</section> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment