1
0
mirror of https://github.com/exane/not-gwent-online synced 2024-10-31 10:36:53 +00:00
not-gwent-online/site/client/app/views/navigation.html

12 lines
272 B
HTML
Raw Normal View History

2015-06-21 14:34:27 +00:00
<nav>
<ul>
2015-06-22 17:16:22 +00:00
<li v-repeat="nav: navigation">
<a v-link="{{ nav.route }}" class="{{ route.path == nav.route ? 'active' : '' }}">
{{ nav.name }}
</a>
</li>
2015-06-21 19:47:39 +00:00
<li class="sub-nav" v-on="click: searchMatch"><a>Quick Match</a></li>
2015-06-21 14:34:27 +00:00
</ul>
</nav>