├── .env ├── .gitignore ├── LICENSE.md ├── README.md ├── assets ├── README.md └── css │ ├── custom.css │ └── pile-of-bones.css ├── components ├── Footer.vue ├── Header.vue ├── PrevNext.vue ├── PrevNextPg.vue └── README.md ├── content ├── README.md ├── pages │ ├── about.md │ └── contact.md └── posts │ ├── test-post-1.md │ ├── test-post-2.md │ ├── test-post-3.md │ ├── test-post-4.md │ ├── test-post-5.md │ └── test-post-6.md ├── jsconfig.json ├── layouts ├── README.md ├── default.vue └── error.vue ├── middleware └── README.md ├── netlify.toml ├── nuxt.config.js ├── package.json ├── pages ├── README.md ├── _slug.vue ├── blog │ ├── _slug.vue │ ├── index.vue │ └── page │ │ └── _id.vue └── index.vue ├── plugins ├── README.md └── vue-moment.js └── static ├── README.md ├── admin ├── README.md ├── config.yml └── index.html ├── favicon ├── README.md ├── apple-touch-icon.png ├── favicon-16x16.png └── favicon-32x32.png └── img ├── macintosh.svg └── netlify.png /.env: -------------------------------------------------------------------------------- 1 | SITE_NAME=nuxt static skeleton 2 | POSTS_PER_PAGE=5 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/README.md -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/assets/README.md -------------------------------------------------------------------------------- /assets/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/assets/css/custom.css -------------------------------------------------------------------------------- /assets/css/pile-of-bones.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/assets/css/pile-of-bones.css -------------------------------------------------------------------------------- /components/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/components/Footer.vue -------------------------------------------------------------------------------- /components/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/components/Header.vue -------------------------------------------------------------------------------- /components/PrevNext.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/components/PrevNext.vue -------------------------------------------------------------------------------- /components/PrevNextPg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/components/PrevNextPg.vue -------------------------------------------------------------------------------- /components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/components/README.md -------------------------------------------------------------------------------- /content/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/content/README.md -------------------------------------------------------------------------------- /content/pages/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/content/pages/about.md -------------------------------------------------------------------------------- /content/pages/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/content/pages/contact.md -------------------------------------------------------------------------------- /content/posts/test-post-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/content/posts/test-post-1.md -------------------------------------------------------------------------------- /content/posts/test-post-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/content/posts/test-post-2.md -------------------------------------------------------------------------------- /content/posts/test-post-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/content/posts/test-post-3.md -------------------------------------------------------------------------------- /content/posts/test-post-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/content/posts/test-post-4.md -------------------------------------------------------------------------------- /content/posts/test-post-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/content/posts/test-post-5.md -------------------------------------------------------------------------------- /content/posts/test-post-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/content/posts/test-post-6.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/jsconfig.json -------------------------------------------------------------------------------- /layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/layouts/README.md -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /layouts/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/layouts/error.vue -------------------------------------------------------------------------------- /middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/middleware/README.md -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/netlify.toml -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/package.json -------------------------------------------------------------------------------- /pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/pages/README.md -------------------------------------------------------------------------------- /pages/_slug.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/pages/_slug.vue -------------------------------------------------------------------------------- /pages/blog/_slug.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/pages/blog/_slug.vue -------------------------------------------------------------------------------- /pages/blog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/pages/blog/index.vue -------------------------------------------------------------------------------- /pages/blog/page/_id.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/pages/blog/page/_id.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/pages/index.vue -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/vue-moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/plugins/vue-moment.js -------------------------------------------------------------------------------- /static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/static/README.md -------------------------------------------------------------------------------- /static/admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/static/admin/README.md -------------------------------------------------------------------------------- /static/admin/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/static/admin/config.yml -------------------------------------------------------------------------------- /static/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/static/admin/index.html -------------------------------------------------------------------------------- /static/favicon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/static/favicon/README.md -------------------------------------------------------------------------------- /static/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/static/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /static/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/static/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /static/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/static/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /static/img/macintosh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/static/img/macintosh.svg -------------------------------------------------------------------------------- /static/img/netlify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms64/nuxt-static-skeleton/HEAD/static/img/netlify.png --------------------------------------------------------------------------------