├── .editorconfig ├── .github └── settings.yml ├── .gitignore ├── .nvmrc ├── LICENSE ├── Makefile ├── README.md ├── assets ├── js │ └── app.js └── sass │ └── custom.sass ├── config.yaml ├── content ├── _index.md ├── docs │ ├── _index.md │ ├── demo.md │ ├── quickstart │ │ ├── _index.md │ │ ├── quickstart1.md │ │ └── quickstart2.md │ ├── reference │ │ ├── _index.md │ │ ├── reference1.md │ │ └── reference2.md │ └── tutorials │ │ ├── _index.md │ │ ├── tutorial1.md │ │ └── tutorial2.md └── test-content │ └── docs-section-1 │ └── _index.md ├── layouts ├── _default │ ├── _markup │ │ ├── render-heading.html │ │ └── render-link.html │ ├── baseof.html │ ├── section.html │ └── single.html ├── index.html ├── partials │ ├── breadcrumb.html │ ├── css.html │ ├── docs │ │ ├── content.html │ │ └── docs-nav.html │ ├── favicon.html │ ├── footer.html │ ├── github-edit.html │ ├── home │ │ ├── cncf-status.html │ │ ├── content.html │ │ └── hero.html │ ├── javascript.html │ ├── navbar.html │ ├── section-nav.html │ ├── single-header.html │ └── social-buttons.html └── shortcodes │ ├── caution.html │ ├── kat-button │ ├── note.html │ ├── tab.html │ ├── tabs.html │ └── warning.html ├── netlify.toml ├── package.json └── static ├── favicon.png └── img ├── icon-pencil.svg ├── logos ├── cncf-color.png └── cncf-white.png ├── pencil.png └── test └── architecture.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/README.md -------------------------------------------------------------------------------- /assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/assets/js/app.js -------------------------------------------------------------------------------- /assets/sass/custom.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/assets/sass/custom.sass -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/config.yaml -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/content/_index.md -------------------------------------------------------------------------------- /content/docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/content/docs/_index.md -------------------------------------------------------------------------------- /content/docs/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/content/docs/demo.md -------------------------------------------------------------------------------- /content/docs/quickstart/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/content/docs/quickstart/_index.md -------------------------------------------------------------------------------- /content/docs/quickstart/quickstart1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/content/docs/quickstart/quickstart1.md -------------------------------------------------------------------------------- /content/docs/quickstart/quickstart2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/content/docs/quickstart/quickstart2.md -------------------------------------------------------------------------------- /content/docs/reference/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/content/docs/reference/_index.md -------------------------------------------------------------------------------- /content/docs/reference/reference1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/content/docs/reference/reference1.md -------------------------------------------------------------------------------- /content/docs/reference/reference2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/content/docs/reference/reference2.md -------------------------------------------------------------------------------- /content/docs/tutorials/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/content/docs/tutorials/_index.md -------------------------------------------------------------------------------- /content/docs/tutorials/tutorial1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/content/docs/tutorials/tutorial1.md -------------------------------------------------------------------------------- /content/docs/tutorials/tutorial2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/content/docs/tutorials/tutorial2.md -------------------------------------------------------------------------------- /content/test-content/docs-section-1/_index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/_default/_markup/render-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/_default/_markup/render-heading.html -------------------------------------------------------------------------------- /layouts/_default/_markup/render-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/_default/_markup/render-link.html -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/_default/section.html -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/partials/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/partials/breadcrumb.html -------------------------------------------------------------------------------- /layouts/partials/css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/partials/css.html -------------------------------------------------------------------------------- /layouts/partials/docs/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/partials/docs/content.html -------------------------------------------------------------------------------- /layouts/partials/docs/docs-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/partials/docs/docs-nav.html -------------------------------------------------------------------------------- /layouts/partials/favicon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/partials/favicon.html -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/github-edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/partials/github-edit.html -------------------------------------------------------------------------------- /layouts/partials/home/cncf-status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/partials/home/cncf-status.html -------------------------------------------------------------------------------- /layouts/partials/home/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/partials/home/content.html -------------------------------------------------------------------------------- /layouts/partials/home/hero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/partials/home/hero.html -------------------------------------------------------------------------------- /layouts/partials/javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/partials/javascript.html -------------------------------------------------------------------------------- /layouts/partials/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/partials/navbar.html -------------------------------------------------------------------------------- /layouts/partials/section-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/partials/section-nav.html -------------------------------------------------------------------------------- /layouts/partials/single-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/partials/single-header.html -------------------------------------------------------------------------------- /layouts/partials/social-buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/partials/social-buttons.html -------------------------------------------------------------------------------- /layouts/shortcodes/caution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/shortcodes/caution.html -------------------------------------------------------------------------------- /layouts/shortcodes/kat-button: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/shortcodes/kat-button -------------------------------------------------------------------------------- /layouts/shortcodes/note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/shortcodes/note.html -------------------------------------------------------------------------------- /layouts/shortcodes/tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/shortcodes/tab.html -------------------------------------------------------------------------------- /layouts/shortcodes/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/shortcodes/tabs.html -------------------------------------------------------------------------------- /layouts/shortcodes/warning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/layouts/shortcodes/warning.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/package.json -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/img/icon-pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/static/img/icon-pencil.svg -------------------------------------------------------------------------------- /static/img/logos/cncf-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/static/img/logos/cncf-color.png -------------------------------------------------------------------------------- /static/img/logos/cncf-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/static/img/logos/cncf-white.png -------------------------------------------------------------------------------- /static/img/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/static/img/pencil.png -------------------------------------------------------------------------------- /static/img/test/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/hugo-netlify-starter/HEAD/static/img/test/architecture.png --------------------------------------------------------------------------------