├── .gitignore ├── LICENSE.txt ├── README.md ├── template.js └── template ├── api ├── .gitkeep ├── article │ ├── config │ │ └── routes.json │ ├── controllers │ │ └── article.js │ ├── models │ │ ├── article.js │ │ └── article.settings.json │ └── services │ │ └── article.js ├── category │ ├── config │ │ └── routes.json │ ├── controllers │ │ └── category.js │ ├── models │ │ ├── category.js │ │ └── category.settings.json │ └── services │ │ └── category.js ├── global │ ├── config │ │ └── routes.json │ ├── controllers │ │ └── global.js │ ├── models │ │ ├── global.js │ │ └── global.settings.json │ └── services │ │ └── global.js ├── homepage │ ├── config │ │ └── routes.json │ ├── controllers │ │ └── homepage.js │ ├── models │ │ ├── homepage.js │ │ └── homepage.settings.json │ └── services │ │ └── homepage.js └── writer │ ├── config │ └── routes.json │ ├── controllers │ └── writer.js │ ├── models │ ├── writer.js │ └── writer.settings.json │ └── services │ └── writer.js ├── components ├── sections │ └── hero.json └── shared │ └── seo.json ├── config └── functions │ └── bootstrap.js └── data ├── data.json └── uploads ├── a-bug-is-becoming-a-meme-on-the-internet.jpg ├── beautiful-picture.jpg ├── daviddoe@strapi.io.jpg ├── default-image.png ├── favicon.png ├── sarahbaker@strapi.io.jpg ├── the-internet-s-own-boy.jpg ├── this-shrimp-is-awesome.jpg ├── we-love-pizza.jpg └── what-s-inside-a-black-hole.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/README.md -------------------------------------------------------------------------------- /template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template.js -------------------------------------------------------------------------------- /template/api/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/api/article/config/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/article/config/routes.json -------------------------------------------------------------------------------- /template/api/article/controllers/article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/article/controllers/article.js -------------------------------------------------------------------------------- /template/api/article/models/article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/article/models/article.js -------------------------------------------------------------------------------- /template/api/article/models/article.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/article/models/article.settings.json -------------------------------------------------------------------------------- /template/api/article/services/article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/article/services/article.js -------------------------------------------------------------------------------- /template/api/category/config/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/category/config/routes.json -------------------------------------------------------------------------------- /template/api/category/controllers/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/category/controllers/category.js -------------------------------------------------------------------------------- /template/api/category/models/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/category/models/category.js -------------------------------------------------------------------------------- /template/api/category/models/category.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/category/models/category.settings.json -------------------------------------------------------------------------------- /template/api/category/services/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/category/services/category.js -------------------------------------------------------------------------------- /template/api/global/config/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/global/config/routes.json -------------------------------------------------------------------------------- /template/api/global/controllers/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/global/controllers/global.js -------------------------------------------------------------------------------- /template/api/global/models/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/global/models/global.js -------------------------------------------------------------------------------- /template/api/global/models/global.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/global/models/global.settings.json -------------------------------------------------------------------------------- /template/api/global/services/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/global/services/global.js -------------------------------------------------------------------------------- /template/api/homepage/config/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/homepage/config/routes.json -------------------------------------------------------------------------------- /template/api/homepage/controllers/homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/homepage/controllers/homepage.js -------------------------------------------------------------------------------- /template/api/homepage/models/homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/homepage/models/homepage.js -------------------------------------------------------------------------------- /template/api/homepage/models/homepage.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/homepage/models/homepage.settings.json -------------------------------------------------------------------------------- /template/api/homepage/services/homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/homepage/services/homepage.js -------------------------------------------------------------------------------- /template/api/writer/config/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/writer/config/routes.json -------------------------------------------------------------------------------- /template/api/writer/controllers/writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/writer/controllers/writer.js -------------------------------------------------------------------------------- /template/api/writer/models/writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/writer/models/writer.js -------------------------------------------------------------------------------- /template/api/writer/models/writer.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/writer/models/writer.settings.json -------------------------------------------------------------------------------- /template/api/writer/services/writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/api/writer/services/writer.js -------------------------------------------------------------------------------- /template/components/sections/hero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/components/sections/hero.json -------------------------------------------------------------------------------- /template/components/shared/seo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/components/shared/seo.json -------------------------------------------------------------------------------- /template/config/functions/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/config/functions/bootstrap.js -------------------------------------------------------------------------------- /template/data/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/data/data.json -------------------------------------------------------------------------------- /template/data/uploads/a-bug-is-becoming-a-meme-on-the-internet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/data/uploads/a-bug-is-becoming-a-meme-on-the-internet.jpg -------------------------------------------------------------------------------- /template/data/uploads/beautiful-picture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/data/uploads/beautiful-picture.jpg -------------------------------------------------------------------------------- /template/data/uploads/daviddoe@strapi.io.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/data/uploads/daviddoe@strapi.io.jpg -------------------------------------------------------------------------------- /template/data/uploads/default-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/data/uploads/default-image.png -------------------------------------------------------------------------------- /template/data/uploads/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/data/uploads/favicon.png -------------------------------------------------------------------------------- /template/data/uploads/sarahbaker@strapi.io.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/data/uploads/sarahbaker@strapi.io.jpg -------------------------------------------------------------------------------- /template/data/uploads/the-internet-s-own-boy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/data/uploads/the-internet-s-own-boy.jpg -------------------------------------------------------------------------------- /template/data/uploads/this-shrimp-is-awesome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/data/uploads/this-shrimp-is-awesome.jpg -------------------------------------------------------------------------------- /template/data/uploads/we-love-pizza.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/data/uploads/we-love-pizza.jpg -------------------------------------------------------------------------------- /template/data/uploads/what-s-inside-a-black-hole.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strapi/strapi-template-blog/HEAD/template/data/uploads/what-s-inside-a-black-hole.jpg --------------------------------------------------------------------------------