├── .gitignore ├── .npmrc ├── .travis.yml ├── README.md ├── assets ├── frontend.jpg └── studio.jpg ├── data └── production.tar.gz ├── dev ├── template-values-development.json └── template-values-production.json ├── package.json ├── renovate.json ├── sanity-template.json └── template ├── .editorconfig ├── .gitignore ├── README.md ├── lerna.json ├── package-lock.json ├── package.json ├── studio ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── config │ ├── .checksums │ └── @sanity │ │ ├── data-aspects.json │ │ ├── default-layout.json │ │ └── default-login.json ├── dashboardConfig.js ├── deskStructure.js ├── netlify.toml ├── package-lock.json ├── package.json ├── plugins │ └── dashboard-widget-structure-menu │ │ ├── sanity.json │ │ └── src │ │ ├── components │ │ ├── StructureMenuWidget.css │ │ ├── StructureMenuWidget.js │ │ └── index.js │ │ ├── lib │ │ └── structure.js │ │ ├── props.js │ │ └── widget.js ├── sanity.json ├── schemas │ ├── documents │ │ ├── author.js │ │ ├── category.js │ │ ├── post.js │ │ └── siteSettings.js │ ├── objects │ │ ├── authorReference.js │ │ ├── bioPortableText.js │ │ ├── bodyPortableText.js │ │ ├── excerptPortableText.js │ │ └── mainImage.js │ └── schema.js └── static │ └── favicon.ico └── web ├── .eleventy.js ├── .env.development.template ├── .gitignore ├── .prettierrc ├── README.md ├── _data ├── authors.js ├── metadata.js └── posts.js ├── _includes ├── layouts │ ├── author.njk │ ├── base.njk │ ├── home.njk │ └── post.njk ├── postslist.njk └── style.css ├── archive.njk ├── author.njk ├── client-config.js ├── index.njk ├── package-lock.json ├── package.json ├── post.njk └── utils ├── imageUrl.js ├── overlayDrafts.js ├── sanityClient.js └── serializers.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /build 3 | /node_modules 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/README.md -------------------------------------------------------------------------------- /assets/frontend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/assets/frontend.jpg -------------------------------------------------------------------------------- /assets/studio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/assets/studio.jpg -------------------------------------------------------------------------------- /data/production.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/data/production.tar.gz -------------------------------------------------------------------------------- /dev/template-values-development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/dev/template-values-development.json -------------------------------------------------------------------------------- /dev/template-values-production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/dev/template-values-production.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/renovate.json -------------------------------------------------------------------------------- /sanity-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/sanity-template.json -------------------------------------------------------------------------------- /template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/.editorconfig -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/README.md -------------------------------------------------------------------------------- /template/lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/lerna.json -------------------------------------------------------------------------------- /template/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/package-lock.json -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/package.json -------------------------------------------------------------------------------- /template/studio/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/.eslintrc.js -------------------------------------------------------------------------------- /template/studio/.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /node_modules 3 | -------------------------------------------------------------------------------- /template/studio/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/.prettierrc -------------------------------------------------------------------------------- /template/studio/README.md: -------------------------------------------------------------------------------- 1 | # <#< repository.name >#>-studio 2 | -------------------------------------------------------------------------------- /template/studio/config/.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/config/.checksums -------------------------------------------------------------------------------- /template/studio/config/@sanity/data-aspects.json: -------------------------------------------------------------------------------- 1 | { 2 | "listOptions": {} 3 | } 4 | -------------------------------------------------------------------------------- /template/studio/config/@sanity/default-layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/config/@sanity/default-layout.json -------------------------------------------------------------------------------- /template/studio/config/@sanity/default-login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/config/@sanity/default-login.json -------------------------------------------------------------------------------- /template/studio/dashboardConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/dashboardConfig.js -------------------------------------------------------------------------------- /template/studio/deskStructure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/deskStructure.js -------------------------------------------------------------------------------- /template/studio/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/netlify.toml -------------------------------------------------------------------------------- /template/studio/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/package-lock.json -------------------------------------------------------------------------------- /template/studio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/package.json -------------------------------------------------------------------------------- /template/studio/plugins/dashboard-widget-structure-menu/sanity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/plugins/dashboard-widget-structure-menu/sanity.json -------------------------------------------------------------------------------- /template/studio/plugins/dashboard-widget-structure-menu/src/components/StructureMenuWidget.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/plugins/dashboard-widget-structure-menu/src/components/StructureMenuWidget.css -------------------------------------------------------------------------------- /template/studio/plugins/dashboard-widget-structure-menu/src/components/StructureMenuWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/plugins/dashboard-widget-structure-menu/src/components/StructureMenuWidget.js -------------------------------------------------------------------------------- /template/studio/plugins/dashboard-widget-structure-menu/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/plugins/dashboard-widget-structure-menu/src/components/index.js -------------------------------------------------------------------------------- /template/studio/plugins/dashboard-widget-structure-menu/src/lib/structure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/plugins/dashboard-widget-structure-menu/src/lib/structure.js -------------------------------------------------------------------------------- /template/studio/plugins/dashboard-widget-structure-menu/src/props.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/plugins/dashboard-widget-structure-menu/src/props.js -------------------------------------------------------------------------------- /template/studio/plugins/dashboard-widget-structure-menu/src/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/plugins/dashboard-widget-structure-menu/src/widget.js -------------------------------------------------------------------------------- /template/studio/sanity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/sanity.json -------------------------------------------------------------------------------- /template/studio/schemas/documents/author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/schemas/documents/author.js -------------------------------------------------------------------------------- /template/studio/schemas/documents/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/schemas/documents/category.js -------------------------------------------------------------------------------- /template/studio/schemas/documents/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/schemas/documents/post.js -------------------------------------------------------------------------------- /template/studio/schemas/documents/siteSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/schemas/documents/siteSettings.js -------------------------------------------------------------------------------- /template/studio/schemas/objects/authorReference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/schemas/objects/authorReference.js -------------------------------------------------------------------------------- /template/studio/schemas/objects/bioPortableText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/schemas/objects/bioPortableText.js -------------------------------------------------------------------------------- /template/studio/schemas/objects/bodyPortableText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/schemas/objects/bodyPortableText.js -------------------------------------------------------------------------------- /template/studio/schemas/objects/excerptPortableText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/schemas/objects/excerptPortableText.js -------------------------------------------------------------------------------- /template/studio/schemas/objects/mainImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/schemas/objects/mainImage.js -------------------------------------------------------------------------------- /template/studio/schemas/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/schemas/schema.js -------------------------------------------------------------------------------- /template/studio/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/studio/static/favicon.ico -------------------------------------------------------------------------------- /template/web/.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/.eleventy.js -------------------------------------------------------------------------------- /template/web/.env.development.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/.env.development.template -------------------------------------------------------------------------------- /template/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/.gitignore -------------------------------------------------------------------------------- /template/web/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 100 3 | } 4 | -------------------------------------------------------------------------------- /template/web/README.md: -------------------------------------------------------------------------------- 1 | # <#< repository.name >#>-web 2 | -------------------------------------------------------------------------------- /template/web/_data/authors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/_data/authors.js -------------------------------------------------------------------------------- /template/web/_data/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/_data/metadata.js -------------------------------------------------------------------------------- /template/web/_data/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/_data/posts.js -------------------------------------------------------------------------------- /template/web/_includes/layouts/author.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/_includes/layouts/author.njk -------------------------------------------------------------------------------- /template/web/_includes/layouts/base.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/_includes/layouts/base.njk -------------------------------------------------------------------------------- /template/web/_includes/layouts/home.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/_includes/layouts/home.njk -------------------------------------------------------------------------------- /template/web/_includes/layouts/post.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/_includes/layouts/post.njk -------------------------------------------------------------------------------- /template/web/_includes/postslist.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/_includes/postslist.njk -------------------------------------------------------------------------------- /template/web/_includes/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/_includes/style.css -------------------------------------------------------------------------------- /template/web/archive.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/archive.njk -------------------------------------------------------------------------------- /template/web/author.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/author.njk -------------------------------------------------------------------------------- /template/web/client-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/client-config.js -------------------------------------------------------------------------------- /template/web/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/index.njk -------------------------------------------------------------------------------- /template/web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/package-lock.json -------------------------------------------------------------------------------- /template/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/package.json -------------------------------------------------------------------------------- /template/web/post.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/post.njk -------------------------------------------------------------------------------- /template/web/utils/imageUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/utils/imageUrl.js -------------------------------------------------------------------------------- /template/web/utils/overlayDrafts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/utils/overlayDrafts.js -------------------------------------------------------------------------------- /template/web/utils/sanityClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/utils/sanityClient.js -------------------------------------------------------------------------------- /template/web/utils/serializers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-template-eleventy-blog/HEAD/template/web/utils/serializers.js --------------------------------------------------------------------------------