├── .gitignore ├── README.md ├── api └── posts.js ├── assets ├── README.md └── scss │ └── _colors.scss ├── components ├── Logo.vue └── README.md ├── layouts ├── README.md └── default.vue ├── middleware └── README.md ├── nuxt.config.js ├── package.json ├── pages ├── README.md ├── _slug │ └── index.vue ├── index.vue └── who │ └── index.vue ├── plugins └── README.md ├── static ├── README.md └── favicon.ico ├── store └── README.md └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designcourse/nuxt-ghost/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designcourse/nuxt-ghost/HEAD/README.md -------------------------------------------------------------------------------- /api/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designcourse/nuxt-ghost/HEAD/api/posts.js -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designcourse/nuxt-ghost/HEAD/assets/README.md -------------------------------------------------------------------------------- /assets/scss/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designcourse/nuxt-ghost/HEAD/assets/scss/_colors.scss -------------------------------------------------------------------------------- /components/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designcourse/nuxt-ghost/HEAD/components/Logo.vue -------------------------------------------------------------------------------- /components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designcourse/nuxt-ghost/HEAD/components/README.md -------------------------------------------------------------------------------- /layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designcourse/nuxt-ghost/HEAD/layouts/README.md -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designcourse/nuxt-ghost/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designcourse/nuxt-ghost/HEAD/middleware/README.md -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designcourse/nuxt-ghost/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designcourse/nuxt-ghost/HEAD/package.json -------------------------------------------------------------------------------- /pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designcourse/nuxt-ghost/HEAD/pages/README.md -------------------------------------------------------------------------------- /pages/_slug/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designcourse/nuxt-ghost/HEAD/pages/_slug/index.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designcourse/nuxt-ghost/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pages/who/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designcourse/nuxt-ghost/HEAD/pages/who/index.vue -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designcourse/nuxt-ghost/HEAD/plugins/README.md -------------------------------------------------------------------------------- /static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designcourse/nuxt-ghost/HEAD/static/README.md -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designcourse/nuxt-ghost/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designcourse/nuxt-ghost/HEAD/store/README.md -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designcourse/nuxt-ghost/HEAD/yarn.lock --------------------------------------------------------------------------------