Skip to content

Instantly share code, notes, and snippets.

@serenaf
Created November 7, 2017 10:17
Show Gist options
  • Save serenaf/be1e88464134b39aec6bb6f690951f3d to your computer and use it in GitHub Desktop.
Save serenaf/be1e88464134b39aec6bb6f690951f3d to your computer and use it in GitHub Desktop.
Navigation Bar Component
<ul>
<li>{{#link-to 'frontpage'}}Front page{{/link-to}}</li>
<li>{{#link-to 'new'}}new{{/link-to}}</li>
<li>{{#link-to 'show'}}show{{/link-to}}</li>
<li>{{#link-to 'ask'}}ask{{/link-to}}</li>
<li>{{#link-to 'jobs'}}jobs{{/link-to}}</li>
<li>{{#link-to 'active'}}active{{/link-to}}</li>
</ul>
import Component from '@ember/component';
export default Component.extend({
tagName: 'nav'
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment