├── starter.json ├── screenshot.png ├── starter ├── public │ └── favicon.ico ├── .prettierrc ├── .eslintrc ├── components │ ├── layout.js │ ├── image.js │ ├── card.js │ ├── nav.js │ ├── articles.js │ └── seo.js ├── lib │ ├── media.js │ └── api.js ├── assets │ └── css │ │ └── style.css ├── package.json ├── pages │ ├── index.js │ ├── _document.js │ ├── category │ │ └── [slug].js │ ├── _app.js │ └── article │ │ └── [slug].js └── yarn.lock ├── LICENSE.txt ├── .gitignore └── README.md /starter.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "https://github.com/strapi/strapi-template-blog" 3 | } 4 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-starter-next-blog/HEAD/screenshot.png -------------------------------------------------------------------------------- /starter/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-starter-next-blog/HEAD/starter/public/favicon.ico -------------------------------------------------------------------------------- /starter/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 80, 3 | "singleQuote": false, 4 | "trailingComma": "es5", 5 | "semi": false, 6 | "tabWidth": 2 7 | } -------------------------------------------------------------------------------- /starter/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "next", 4 | "prettier" 5 | ], 6 | "plugins": [ 7 | "prettier" 8 | ], 9 | "rules": { 10 | "prettier/prettier": "error" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /starter/components/layout.js: -------------------------------------------------------------------------------- 1 | import Nav from "./nav" 2 | 3 | const Layout = ({ children, categories, seo }) => ( 4 | <> 5 |