Basic layout and categories nav

This commit is contained in:
2017-11-08 02:06:16 +01:00
parent 1485b85581
commit 9221f93ea3
11 changed files with 153 additions and 24 deletions

View File

@@ -0,0 +1,7 @@
import Component from '@ember/component';
export default Component.extend({
categories: null
});

View File

@@ -0,0 +1,9 @@
{{#if categories}}
<nav>
<ul>
{{#each categories as |category|}}
<li><a>{{category}}</a></li>
{{/each}}
</ul>
</nav>
{{/if}}