├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .netlify ├── README.md ├── assets └── README.md ├── components ├── Feature.vue ├── Grid.vue ├── Header.vue ├── MarkdownContent.vue ├── Page.vue ├── README.md └── Teaser.vue ├── layouts ├── README.md └── default.vue ├── middleware └── README.md ├── nuxt.config.js ├── package.json ├── pages ├── README.md ├── _slug.vue ├── authors │ ├── _author.vue │ └── index.vue ├── index.vue └── posts │ ├── _post.vue │ └── index.vue ├── plugins ├── README.md ├── components.js ├── content-types.js └── helper.js ├── static ├── README.md └── favicon.ico └── store └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/.gitignore -------------------------------------------------------------------------------- /.netlify: -------------------------------------------------------------------------------- 1 | {"site_id":"43900179-e5a6-4f1c-bc4f-fd182154178b","path":"dist"} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/README.md -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/assets/README.md -------------------------------------------------------------------------------- /components/Feature.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/components/Feature.vue -------------------------------------------------------------------------------- /components/Grid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/components/Grid.vue -------------------------------------------------------------------------------- /components/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/components/Header.vue -------------------------------------------------------------------------------- /components/MarkdownContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/components/MarkdownContent.vue -------------------------------------------------------------------------------- /components/Page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/components/Page.vue -------------------------------------------------------------------------------- /components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/components/README.md -------------------------------------------------------------------------------- /components/Teaser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/components/Teaser.vue -------------------------------------------------------------------------------- /layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/layouts/README.md -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/middleware/README.md -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/package.json -------------------------------------------------------------------------------- /pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/pages/README.md -------------------------------------------------------------------------------- /pages/_slug.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/pages/_slug.vue -------------------------------------------------------------------------------- /pages/authors/_author.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/pages/authors/_author.vue -------------------------------------------------------------------------------- /pages/authors/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/pages/authors/index.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pages/posts/_post.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/pages/posts/_post.vue -------------------------------------------------------------------------------- /pages/posts/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/pages/posts/index.vue -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/plugins/components.js -------------------------------------------------------------------------------- /plugins/content-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/plugins/content-types.js -------------------------------------------------------------------------------- /plugins/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/plugins/helper.js -------------------------------------------------------------------------------- /static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/static/README.md -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyblok/nuxtwebsite/HEAD/store/README.md --------------------------------------------------------------------------------