UNPKG

ember-ghost

Version:

Fully-functional, SEO friendly static site implementation of a blog system built on Ember.

15 lines (12 loc) 315 B
import Router from '../router'; export function initialize() { Router.map(function() { this.route('post', { path: ':id' }); this.route('page', { path: '/page/:id' }); this.route('author', { path: '/author/:id'}); this.route('tag', { path: '/tag/:id' }); }); } export default { initialize };