├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── LICENSE.md ├── README.md ├── archetypes ├── audio.md ├── default.md ├── link.md ├── post.md ├── quote.md └── video.md ├── assets ├── css │ ├── custom.css │ ├── fontawesome.min.css │ ├── main-default.css │ ├── main.css │ └── materialize-default.min.css ├── js │ ├── custom.js │ ├── jquery-3.5.1.slim.min.js │ ├── main.js │ └── materialize.min.js ├── materialize-LICENSE └── materialize-README.md ├── exampleSite ├── .gitignore ├── LICENSE ├── README.md ├── assets │ ├── css │ │ ├── custom.css │ │ ├── test.css │ │ └── test_site.css │ └── js │ │ ├── custom.js │ │ ├── test.js │ │ └── test_site.js ├── configTaxo.toml ├── content │ ├── _index.md │ ├── about.md │ ├── archives.md │ ├── homepage │ │ ├── about.md │ │ ├── index.md │ │ └── work.md │ ├── portfolio │ │ └── .gitkeep │ ├── post │ │ ├── 005-theme-info │ │ │ ├── cover-home-office-599475_1920.jpg │ │ │ ├── feature-laptop-2838918_1920.jpg │ │ │ └── index.md │ │ ├── 080-video-test │ │ │ ├── feature-laptop-2838918_1920.jpg │ │ │ └── index.md │ │ ├── 099-jscss-test │ │ │ ├── index.md │ │ │ └── test.js │ │ ├── 100-multilang │ │ │ ├── index.de.md │ │ │ └── index.md │ │ ├── _index.md │ │ ├── emoji-support.md │ │ ├── markdown-syntax.md │ │ ├── math-typesetting.md │ │ ├── math-typesetting.mmark │ │ ├── placeholder-text.md │ │ └── rich-content.md │ ├── product │ │ └── .gitkeep │ └── sketch │ │ └── lines-from-center.html ├── hugo.toml ├── layouts │ └── .gitkeep ├── resources │ └── _gen │ │ └── images │ │ └── post │ │ ├── 005-theme-info │ │ ├── cover-home-office-599475_1920_hu3d58414db42eb6c3378af81bc37bf3a8_433444_600x0_resize_q75_box.jpg │ │ ├── feature-laptop-2838918_1920_hu31ff8e259c43910ba80d05def43584e6_415824_1108x0_resize_q75_box.jpg │ │ └── feature-laptop-2838918_1920_hu31ff8e259c43910ba80d05def43584e6_415824_360x0_resize_q75_box.jpg │ │ └── 080-video-test │ │ └── feature-laptop-2838918_1920_hu31ff8e259c43910ba80d05def43584e6_415824_1108x0_resize_q75_box.jpg └── static │ ├── .gitignore │ └── fonts │ ├── roboto-v20-latin-regular.eot │ ├── roboto-v20-latin-regular.svg │ ├── roboto-v20-latin-regular.ttf │ ├── roboto-v20-latin-regular.woff │ └── roboto-v20-latin-regular.woff2 ├── i18n ├── de.toml ├── en.toml └── es.toml ├── images ├── screenshot.png ├── screenshot2.png ├── tn.png └── tn2.png ├── layouts ├── 404.html ├── _default │ ├── _markup │ │ └── render-link.html │ ├── baseof.html │ ├── list.html │ ├── single.html │ └── terms.html ├── index.html ├── partials │ ├── content.html │ ├── content_card_body.html │ ├── content_card_footer.html │ ├── content_card_header.html │ ├── content_index.html │ ├── footer.html │ ├── head.html │ ├── head_custom.html │ ├── header.html │ ├── i18nlist.html │ ├── js.html │ ├── seo_schema.html │ └── social.html └── shortcodes │ └── optfigure.html ├── static ├── .htaccess ├── FONTAWESOME-LICENSE.txt └── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 └── theme.toml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/audio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/archetypes/audio.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /archetypes/link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/archetypes/link.md -------------------------------------------------------------------------------- /archetypes/post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/archetypes/post.md -------------------------------------------------------------------------------- /archetypes/quote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/archetypes/quote.md -------------------------------------------------------------------------------- /archetypes/video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/archetypes/video.md -------------------------------------------------------------------------------- /assets/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/assets/css/custom.css -------------------------------------------------------------------------------- /assets/css/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/assets/css/fontawesome.min.css -------------------------------------------------------------------------------- /assets/css/main-default.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/assets/css/main.css -------------------------------------------------------------------------------- /assets/css/materialize-default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/assets/css/materialize-default.min.css -------------------------------------------------------------------------------- /assets/js/custom.js: -------------------------------------------------------------------------------- 1 | /* Overwrite in your /assets/js/custom.js file */ 2 | -------------------------------------------------------------------------------- /assets/js/jquery-3.5.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/assets/js/jquery-3.5.1.slim.min.js -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /assets/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/assets/js/materialize.min.js -------------------------------------------------------------------------------- /assets/materialize-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/assets/materialize-LICENSE -------------------------------------------------------------------------------- /assets/materialize-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/assets/materialize-README.md -------------------------------------------------------------------------------- /exampleSite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/.gitignore -------------------------------------------------------------------------------- /exampleSite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/LICENSE -------------------------------------------------------------------------------- /exampleSite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/README.md -------------------------------------------------------------------------------- /exampleSite/assets/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/assets/css/custom.css -------------------------------------------------------------------------------- /exampleSite/assets/css/test.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: red; 3 | } -------------------------------------------------------------------------------- /exampleSite/assets/css/test_site.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/assets/js/custom.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/assets/js/test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/assets/js/test_site.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/configTaxo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/configTaxo.toml -------------------------------------------------------------------------------- /exampleSite/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/content/_index.md -------------------------------------------------------------------------------- /exampleSite/content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/content/about.md -------------------------------------------------------------------------------- /exampleSite/content/archives.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: 2019-05-28 3 | type: section 4 | layout: "archives" 5 | --- 6 | -------------------------------------------------------------------------------- /exampleSite/content/homepage/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/content/homepage/about.md -------------------------------------------------------------------------------- /exampleSite/content/homepage/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/homepage/work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/content/homepage/work.md -------------------------------------------------------------------------------- /exampleSite/content/portfolio/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/content/post/005-theme-info/cover-home-office-599475_1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/content/post/005-theme-info/cover-home-office-599475_1920.jpg -------------------------------------------------------------------------------- /exampleSite/content/post/005-theme-info/feature-laptop-2838918_1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/content/post/005-theme-info/feature-laptop-2838918_1920.jpg -------------------------------------------------------------------------------- /exampleSite/content/post/005-theme-info/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/content/post/005-theme-info/index.md -------------------------------------------------------------------------------- /exampleSite/content/post/080-video-test/feature-laptop-2838918_1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/content/post/080-video-test/feature-laptop-2838918_1920.jpg -------------------------------------------------------------------------------- /exampleSite/content/post/080-video-test/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/content/post/080-video-test/index.md -------------------------------------------------------------------------------- /exampleSite/content/post/099-jscss-test/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/content/post/099-jscss-test/index.md -------------------------------------------------------------------------------- /exampleSite/content/post/099-jscss-test/test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/content/post/100-multilang/index.de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/content/post/100-multilang/index.de.md -------------------------------------------------------------------------------- /exampleSite/content/post/100-multilang/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/content/post/100-multilang/index.md -------------------------------------------------------------------------------- /exampleSite/content/post/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/content/post/_index.md -------------------------------------------------------------------------------- /exampleSite/content/post/emoji-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/content/post/emoji-support.md -------------------------------------------------------------------------------- /exampleSite/content/post/markdown-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/content/post/markdown-syntax.md -------------------------------------------------------------------------------- /exampleSite/content/post/math-typesetting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/content/post/math-typesetting.md -------------------------------------------------------------------------------- /exampleSite/content/post/math-typesetting.mmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/content/post/math-typesetting.mmark -------------------------------------------------------------------------------- /exampleSite/content/post/placeholder-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/content/post/placeholder-text.md -------------------------------------------------------------------------------- /exampleSite/content/post/rich-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/content/post/rich-content.md -------------------------------------------------------------------------------- /exampleSite/content/product/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/content/sketch/lines-from-center.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/content/sketch/lines-from-center.html -------------------------------------------------------------------------------- /exampleSite/hugo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/hugo.toml -------------------------------------------------------------------------------- /exampleSite/layouts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/resources/_gen/images/post/005-theme-info/cover-home-office-599475_1920_hu3d58414db42eb6c3378af81bc37bf3a8_433444_600x0_resize_q75_box.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/resources/_gen/images/post/005-theme-info/cover-home-office-599475_1920_hu3d58414db42eb6c3378af81bc37bf3a8_433444_600x0_resize_q75_box.jpg -------------------------------------------------------------------------------- /exampleSite/resources/_gen/images/post/005-theme-info/feature-laptop-2838918_1920_hu31ff8e259c43910ba80d05def43584e6_415824_1108x0_resize_q75_box.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/resources/_gen/images/post/005-theme-info/feature-laptop-2838918_1920_hu31ff8e259c43910ba80d05def43584e6_415824_1108x0_resize_q75_box.jpg -------------------------------------------------------------------------------- /exampleSite/resources/_gen/images/post/005-theme-info/feature-laptop-2838918_1920_hu31ff8e259c43910ba80d05def43584e6_415824_360x0_resize_q75_box.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/resources/_gen/images/post/005-theme-info/feature-laptop-2838918_1920_hu31ff8e259c43910ba80d05def43584e6_415824_360x0_resize_q75_box.jpg -------------------------------------------------------------------------------- /exampleSite/resources/_gen/images/post/080-video-test/feature-laptop-2838918_1920_hu31ff8e259c43910ba80d05def43584e6_415824_1108x0_resize_q75_box.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/resources/_gen/images/post/080-video-test/feature-laptop-2838918_1920_hu31ff8e259c43910ba80d05def43584e6_415824_1108x0_resize_q75_box.jpg -------------------------------------------------------------------------------- /exampleSite/static/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/static/fonts/roboto-v20-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/static/fonts/roboto-v20-latin-regular.eot -------------------------------------------------------------------------------- /exampleSite/static/fonts/roboto-v20-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/static/fonts/roboto-v20-latin-regular.svg -------------------------------------------------------------------------------- /exampleSite/static/fonts/roboto-v20-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/static/fonts/roboto-v20-latin-regular.ttf -------------------------------------------------------------------------------- /exampleSite/static/fonts/roboto-v20-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/static/fonts/roboto-v20-latin-regular.woff -------------------------------------------------------------------------------- /exampleSite/static/fonts/roboto-v20-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/exampleSite/static/fonts/roboto-v20-latin-regular.woff2 -------------------------------------------------------------------------------- /i18n/de.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/i18n/de.toml -------------------------------------------------------------------------------- /i18n/en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/i18n/en.toml -------------------------------------------------------------------------------- /i18n/es.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/i18n/es.toml -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/images/screenshot2.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/images/tn.png -------------------------------------------------------------------------------- /images/tn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/images/tn2.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/_default/_markup/render-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/layouts/_default/_markup/render-link.html -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/_default/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/layouts/_default/terms.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/partials/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/layouts/partials/content.html -------------------------------------------------------------------------------- /layouts/partials/content_card_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/layouts/partials/content_card_body.html -------------------------------------------------------------------------------- /layouts/partials/content_card_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/layouts/partials/content_card_footer.html -------------------------------------------------------------------------------- /layouts/partials/content_card_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/layouts/partials/content_card_header.html -------------------------------------------------------------------------------- /layouts/partials/content_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/layouts/partials/content_index.html -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/layouts/partials/head.html -------------------------------------------------------------------------------- /layouts/partials/head_custom.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/layouts/partials/header.html -------------------------------------------------------------------------------- /layouts/partials/i18nlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/layouts/partials/i18nlist.html -------------------------------------------------------------------------------- /layouts/partials/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/layouts/partials/js.html -------------------------------------------------------------------------------- /layouts/partials/seo_schema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/layouts/partials/seo_schema.html -------------------------------------------------------------------------------- /layouts/partials/social.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/layouts/partials/social.html -------------------------------------------------------------------------------- /layouts/shortcodes/optfigure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/layouts/shortcodes/optfigure.html -------------------------------------------------------------------------------- /static/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/static/.htaccess -------------------------------------------------------------------------------- /static/FONTAWESOME-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/static/FONTAWESOME-LICENSE.txt -------------------------------------------------------------------------------- /static/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/static/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /static/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/static/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/static/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /static/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/static/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /static/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/static/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /static/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/static/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /static/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/static/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /static/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/static/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/static/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /static/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/static/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /static/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/static/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /static/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/static/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spech66/materialize-bp-hugo-theme/HEAD/theme.toml --------------------------------------------------------------------------------