UNPKG

aurelia-materialize-bridge

Version:
16 lines (15 loc) 441 B
<template> <require from="./breadcrumbs.css"></require> <require from="./instructionFilter"></require> <nav> <div class="nav-wrapper"> <div class="col s12"> <template repeat.for="instruction of router.currentInstruction.getAllInstructions() | instructionFilter"> <a click.delegate="navigate(instruction)" class="breadcrumb"> ${instruction.config.title} </a> </template> </div> </div> </nav> </template>