Skip to content

Instantly share code, notes, and snippets.

@AshleyGrant
Created February 8, 2015 20:39
Show Gist options
  • Save AshleyGrant/17ae61d9a425ba6f111b to your computer and use it in GitHub Desktop.
Save AshleyGrant/17ae61d9a425ba6f111b to your computer and use it in GitHub Desktop.
<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