├── .babelrc ├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── bin ├── hugo.darwin ├── hugo.exe └── hugo.linux ├── gulpfile.babel.js ├── netlify.toml ├── package.json ├── site ├── config.toml ├── content │ ├── .keep │ ├── contact.md │ ├── post │ │ ├── brewing-chemex.md │ │ ├── jamaica-blue.md │ │ └── making-sense.md │ ├── products.md │ └── values.md ├── data │ └── .keep ├── layouts │ ├── _default │ │ ├── li.html │ │ ├── list.html │ │ └── single.html │ ├── contact │ │ └── single.html │ ├── index.html │ ├── partials │ │ ├── 2-up.html │ │ ├── 4-up.html │ │ ├── blockquote.html │ │ ├── blog.html │ │ ├── contact-form.html │ │ ├── footer.html │ │ ├── head.html │ │ ├── image-grid.html │ │ ├── jumbotron.html │ │ ├── media-block-reverse.html │ │ ├── media-block.html │ │ ├── nav.html │ │ ├── newsletter-form.html │ │ ├── short-text.html │ │ ├── social-icon.html │ │ ├── svg.html │ │ ├── table-column.html │ │ ├── table.html │ │ └── text-and-image.html │ ├── post │ │ └── single.html │ ├── products │ │ └── single.html │ └── values │ │ └── single.html └── static │ ├── .keep │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── img │ ├── about │ │ ├── direct-sourcing.jpg │ │ ├── jumbotron.jpg │ │ ├── reinvest-profits.jpg │ │ ├── shade-grown.jpg │ │ ├── single-origin.jpg │ │ └── sustainable-farming.jpg │ ├── blog-index.jpg │ ├── blog │ │ ├── chemex.jpg │ │ └── flavor_wheel.jpg │ ├── home │ │ ├── about-section.jpg │ │ └── jumbotron.jpg │ ├── icon.svg │ ├── icons │ │ ├── facebook.svg │ │ ├── instagram.svg │ │ ├── twitter.svg │ │ └── vimeo.svg │ ├── illustrations │ │ ├── coffee-gear.svg │ │ ├── coffee.svg │ │ ├── meeting-space.svg │ │ └── tutorials.svg │ ├── logo.svg │ └── products │ │ ├── jumbotron.jpg │ │ ├── products-full-width.jpg │ │ ├── products-grid1.jpg │ │ ├── products-grid2.jpg │ │ └── products-grid3.jpg │ ├── manifest.json │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-310x310.png │ ├── mstile-70x70.png │ ├── og-image.jpg │ └── safari-pinned-tab.svg ├── src ├── cms │ ├── config.yml │ └── index.html ├── css │ ├── imports │ │ ├── _background-position.css │ │ ├── _background-size.css │ │ ├── _border-colors.css │ │ ├── _border-radius.css │ │ ├── _border-style.css │ │ ├── _border-widths.css │ │ ├── _borders.css │ │ ├── _box-sizing.css │ │ ├── _buttons.css │ │ ├── _clears.css │ │ ├── _cms.css │ │ ├── _code.css │ │ ├── _colors.css │ │ ├── _coordinates.css │ │ ├── _custom.css │ │ ├── _debug-children.css │ │ ├── _debug-grid.css │ │ ├── _debug.css │ │ ├── _display.css │ │ ├── _flexbox.css │ │ ├── _floats.css │ │ ├── _font-style.css │ │ ├── _font-weight.css │ │ ├── _forms.css │ │ ├── _heights.css │ │ ├── _images.css │ │ ├── _line-height.css │ │ ├── _links.css │ │ ├── _lists.css │ │ ├── _max-widths.css │ │ ├── _media-queries.css │ │ ├── _opacity.css │ │ ├── _outlines.css │ │ ├── _overflow.css │ │ ├── _position.css │ │ ├── _reset.css │ │ ├── _spacing.css │ │ ├── _states.css │ │ ├── _styles.css │ │ ├── _svg.css │ │ ├── _tables.css │ │ ├── _text-align.css │ │ ├── _text-decoration.css │ │ ├── _text-transform.css │ │ ├── _type-scale.css │ │ ├── _typography.css │ │ ├── _utilities.css │ │ ├── _variables.css │ │ ├── _vertical-align.css │ │ ├── _visibility.css │ │ ├── _white-space.css │ │ ├── _widths.css │ │ ├── _word-break.css │ │ └── _z-index.css │ └── main.css └── js │ ├── app.js │ ├── cms-preview-templates │ ├── post.js │ └── products.js │ └── cms.js ├── webpack.conf.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | /npm-debug.log 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/README.md -------------------------------------------------------------------------------- /bin/hugo.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/bin/hugo.darwin -------------------------------------------------------------------------------- /bin/hugo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/bin/hugo.exe -------------------------------------------------------------------------------- /bin/hugo.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/bin/hugo.linux -------------------------------------------------------------------------------- /gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/gulpfile.babel.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/package.json -------------------------------------------------------------------------------- /site/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/config.toml -------------------------------------------------------------------------------- /site/content/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/content/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/content/contact.md -------------------------------------------------------------------------------- /site/content/post/brewing-chemex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/content/post/brewing-chemex.md -------------------------------------------------------------------------------- /site/content/post/jamaica-blue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/content/post/jamaica-blue.md -------------------------------------------------------------------------------- /site/content/post/making-sense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/content/post/making-sense.md -------------------------------------------------------------------------------- /site/content/products.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/content/products.md -------------------------------------------------------------------------------- /site/content/values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/content/values.md -------------------------------------------------------------------------------- /site/data/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/layouts/_default/li.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/_default/li.html -------------------------------------------------------------------------------- /site/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/_default/list.html -------------------------------------------------------------------------------- /site/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/_default/single.html -------------------------------------------------------------------------------- /site/layouts/contact/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/contact/single.html -------------------------------------------------------------------------------- /site/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/index.html -------------------------------------------------------------------------------- /site/layouts/partials/2-up.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/partials/2-up.html -------------------------------------------------------------------------------- /site/layouts/partials/4-up.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/partials/4-up.html -------------------------------------------------------------------------------- /site/layouts/partials/blockquote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/partials/blockquote.html -------------------------------------------------------------------------------- /site/layouts/partials/blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/partials/blog.html -------------------------------------------------------------------------------- /site/layouts/partials/contact-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/partials/contact-form.html -------------------------------------------------------------------------------- /site/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/partials/footer.html -------------------------------------------------------------------------------- /site/layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/partials/head.html -------------------------------------------------------------------------------- /site/layouts/partials/image-grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/partials/image-grid.html -------------------------------------------------------------------------------- /site/layouts/partials/jumbotron.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/partials/jumbotron.html -------------------------------------------------------------------------------- /site/layouts/partials/media-block-reverse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/partials/media-block-reverse.html -------------------------------------------------------------------------------- /site/layouts/partials/media-block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/partials/media-block.html -------------------------------------------------------------------------------- /site/layouts/partials/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/partials/nav.html -------------------------------------------------------------------------------- /site/layouts/partials/newsletter-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/partials/newsletter-form.html -------------------------------------------------------------------------------- /site/layouts/partials/short-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/partials/short-text.html -------------------------------------------------------------------------------- /site/layouts/partials/social-icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/partials/social-icon.html -------------------------------------------------------------------------------- /site/layouts/partials/svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/partials/svg.html -------------------------------------------------------------------------------- /site/layouts/partials/table-column.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/partials/table-column.html -------------------------------------------------------------------------------- /site/layouts/partials/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/partials/table.html -------------------------------------------------------------------------------- /site/layouts/partials/text-and-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/partials/text-and-image.html -------------------------------------------------------------------------------- /site/layouts/post/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/post/single.html -------------------------------------------------------------------------------- /site/layouts/products/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/products/single.html -------------------------------------------------------------------------------- /site/layouts/values/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/layouts/values/single.html -------------------------------------------------------------------------------- /site/static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /site/static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /site/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/apple-touch-icon.png -------------------------------------------------------------------------------- /site/static/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/browserconfig.xml -------------------------------------------------------------------------------- /site/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/favicon-16x16.png -------------------------------------------------------------------------------- /site/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/favicon-32x32.png -------------------------------------------------------------------------------- /site/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/favicon.ico -------------------------------------------------------------------------------- /site/static/img/about/direct-sourcing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/about/direct-sourcing.jpg -------------------------------------------------------------------------------- /site/static/img/about/jumbotron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/about/jumbotron.jpg -------------------------------------------------------------------------------- /site/static/img/about/reinvest-profits.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/about/reinvest-profits.jpg -------------------------------------------------------------------------------- /site/static/img/about/shade-grown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/about/shade-grown.jpg -------------------------------------------------------------------------------- /site/static/img/about/single-origin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/about/single-origin.jpg -------------------------------------------------------------------------------- /site/static/img/about/sustainable-farming.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/about/sustainable-farming.jpg -------------------------------------------------------------------------------- /site/static/img/blog-index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/blog-index.jpg -------------------------------------------------------------------------------- /site/static/img/blog/chemex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/blog/chemex.jpg -------------------------------------------------------------------------------- /site/static/img/blog/flavor_wheel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/blog/flavor_wheel.jpg -------------------------------------------------------------------------------- /site/static/img/home/about-section.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/home/about-section.jpg -------------------------------------------------------------------------------- /site/static/img/home/jumbotron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/home/jumbotron.jpg -------------------------------------------------------------------------------- /site/static/img/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/icon.svg -------------------------------------------------------------------------------- /site/static/img/icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/icons/facebook.svg -------------------------------------------------------------------------------- /site/static/img/icons/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/icons/instagram.svg -------------------------------------------------------------------------------- /site/static/img/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/icons/twitter.svg -------------------------------------------------------------------------------- /site/static/img/icons/vimeo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/icons/vimeo.svg -------------------------------------------------------------------------------- /site/static/img/illustrations/coffee-gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/illustrations/coffee-gear.svg -------------------------------------------------------------------------------- /site/static/img/illustrations/coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/illustrations/coffee.svg -------------------------------------------------------------------------------- /site/static/img/illustrations/meeting-space.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/illustrations/meeting-space.svg -------------------------------------------------------------------------------- /site/static/img/illustrations/tutorials.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/illustrations/tutorials.svg -------------------------------------------------------------------------------- /site/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/logo.svg -------------------------------------------------------------------------------- /site/static/img/products/jumbotron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/products/jumbotron.jpg -------------------------------------------------------------------------------- /site/static/img/products/products-full-width.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/products/products-full-width.jpg -------------------------------------------------------------------------------- /site/static/img/products/products-grid1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/products/products-grid1.jpg -------------------------------------------------------------------------------- /site/static/img/products/products-grid2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/products/products-grid2.jpg -------------------------------------------------------------------------------- /site/static/img/products/products-grid3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/img/products/products-grid3.jpg -------------------------------------------------------------------------------- /site/static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/manifest.json -------------------------------------------------------------------------------- /site/static/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/mstile-144x144.png -------------------------------------------------------------------------------- /site/static/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/mstile-150x150.png -------------------------------------------------------------------------------- /site/static/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/mstile-310x150.png -------------------------------------------------------------------------------- /site/static/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/mstile-310x310.png -------------------------------------------------------------------------------- /site/static/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/mstile-70x70.png -------------------------------------------------------------------------------- /site/static/og-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/og-image.jpg -------------------------------------------------------------------------------- /site/static/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/site/static/safari-pinned-tab.svg -------------------------------------------------------------------------------- /src/cms/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/cms/config.yml -------------------------------------------------------------------------------- /src/cms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/cms/index.html -------------------------------------------------------------------------------- /src/css/imports/_background-position.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_background-position.css -------------------------------------------------------------------------------- /src/css/imports/_background-size.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_background-size.css -------------------------------------------------------------------------------- /src/css/imports/_border-colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_border-colors.css -------------------------------------------------------------------------------- /src/css/imports/_border-radius.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_border-radius.css -------------------------------------------------------------------------------- /src/css/imports/_border-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_border-style.css -------------------------------------------------------------------------------- /src/css/imports/_border-widths.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_border-widths.css -------------------------------------------------------------------------------- /src/css/imports/_borders.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_borders.css -------------------------------------------------------------------------------- /src/css/imports/_box-sizing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_box-sizing.css -------------------------------------------------------------------------------- /src/css/imports/_buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_buttons.css -------------------------------------------------------------------------------- /src/css/imports/_clears.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_clears.css -------------------------------------------------------------------------------- /src/css/imports/_cms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_cms.css -------------------------------------------------------------------------------- /src/css/imports/_code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_code.css -------------------------------------------------------------------------------- /src/css/imports/_colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_colors.css -------------------------------------------------------------------------------- /src/css/imports/_coordinates.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_coordinates.css -------------------------------------------------------------------------------- /src/css/imports/_custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_custom.css -------------------------------------------------------------------------------- /src/css/imports/_debug-children.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_debug-children.css -------------------------------------------------------------------------------- /src/css/imports/_debug-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_debug-grid.css -------------------------------------------------------------------------------- /src/css/imports/_debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_debug.css -------------------------------------------------------------------------------- /src/css/imports/_display.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_display.css -------------------------------------------------------------------------------- /src/css/imports/_flexbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_flexbox.css -------------------------------------------------------------------------------- /src/css/imports/_floats.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_floats.css -------------------------------------------------------------------------------- /src/css/imports/_font-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_font-style.css -------------------------------------------------------------------------------- /src/css/imports/_font-weight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_font-weight.css -------------------------------------------------------------------------------- /src/css/imports/_forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_forms.css -------------------------------------------------------------------------------- /src/css/imports/_heights.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_heights.css -------------------------------------------------------------------------------- /src/css/imports/_images.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_images.css -------------------------------------------------------------------------------- /src/css/imports/_line-height.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_line-height.css -------------------------------------------------------------------------------- /src/css/imports/_links.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_links.css -------------------------------------------------------------------------------- /src/css/imports/_lists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_lists.css -------------------------------------------------------------------------------- /src/css/imports/_max-widths.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_max-widths.css -------------------------------------------------------------------------------- /src/css/imports/_media-queries.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_media-queries.css -------------------------------------------------------------------------------- /src/css/imports/_opacity.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_opacity.css -------------------------------------------------------------------------------- /src/css/imports/_outlines.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_outlines.css -------------------------------------------------------------------------------- /src/css/imports/_overflow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_overflow.css -------------------------------------------------------------------------------- /src/css/imports/_position.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_position.css -------------------------------------------------------------------------------- /src/css/imports/_reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_reset.css -------------------------------------------------------------------------------- /src/css/imports/_spacing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_spacing.css -------------------------------------------------------------------------------- /src/css/imports/_states.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_states.css -------------------------------------------------------------------------------- /src/css/imports/_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_styles.css -------------------------------------------------------------------------------- /src/css/imports/_svg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_svg.css -------------------------------------------------------------------------------- /src/css/imports/_tables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_tables.css -------------------------------------------------------------------------------- /src/css/imports/_text-align.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_text-align.css -------------------------------------------------------------------------------- /src/css/imports/_text-decoration.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_text-decoration.css -------------------------------------------------------------------------------- /src/css/imports/_text-transform.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_text-transform.css -------------------------------------------------------------------------------- /src/css/imports/_type-scale.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_type-scale.css -------------------------------------------------------------------------------- /src/css/imports/_typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_typography.css -------------------------------------------------------------------------------- /src/css/imports/_utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_utilities.css -------------------------------------------------------------------------------- /src/css/imports/_variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_variables.css -------------------------------------------------------------------------------- /src/css/imports/_vertical-align.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_vertical-align.css -------------------------------------------------------------------------------- /src/css/imports/_visibility.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_visibility.css -------------------------------------------------------------------------------- /src/css/imports/_white-space.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_white-space.css -------------------------------------------------------------------------------- /src/css/imports/_widths.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_widths.css -------------------------------------------------------------------------------- /src/css/imports/_word-break.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_word-break.css -------------------------------------------------------------------------------- /src/css/imports/_z-index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/imports/_z-index.css -------------------------------------------------------------------------------- /src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/css/main.css -------------------------------------------------------------------------------- /src/js/app.js: -------------------------------------------------------------------------------- 1 | // JS Goes here - ES6 supported 2 | -------------------------------------------------------------------------------- /src/js/cms-preview-templates/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/js/cms-preview-templates/post.js -------------------------------------------------------------------------------- /src/js/cms-preview-templates/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/js/cms-preview-templates/products.js -------------------------------------------------------------------------------- /src/js/cms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/src/js/cms.js -------------------------------------------------------------------------------- /webpack.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/webpack.conf.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/kaldi-hugo-cms-template/HEAD/yarn.lock --------------------------------------------------------------------------------