UNPKG

empress-blog

Version:

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

16 lines (13 loc) 354 B
/* eslint-disable prettier/prettier */ 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 };