UNPKG

ember-ghost

Version:

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

13 lines (11 loc) 289 B
import Route from '@ember/routing/route'; import { inject as service } from '@ember/service'; export default Route.extend({ classNames: ["index-template", "home-template"], store: service(), model() { return this.store.query('content', { path: 'content', }); }, });