├── .editorconfig ├── .forestry ├── front_matter │ └── templates │ │ ├── author.yml │ │ └── post.yml └── settings.yml ├── .gitignore ├── .jshintrc ├── .prettierrc ├── .sitepins ├── config.json └── schema │ ├── blog.json │ └── portfolio.json ├── LICENSE ├── README.md ├── archetypes └── default.md ├── assets ├── js │ ├── bootstrap.js │ └── script.js ├── plugins │ ├── jquery │ │ └── jquery.min.js │ ├── shuffle │ │ └── shuffle.min.js │ ├── swiper │ │ ├── swiper-bundle.css │ │ └── swiper-bundle.js │ └── webfont │ │ └── webfont-loader-2.js └── scss │ ├── _buttons.scss │ ├── _common.scss │ ├── _mixins.scss │ ├── _typography.scss │ ├── style.scss │ └── templates │ ├── _bootstrap.scss │ ├── _footer.scss │ ├── _main.scss │ └── _navigation.scss ├── exampleSite ├── assets │ ├── images │ │ ├── about │ │ │ ├── author.jpg │ │ │ └── signature.png │ │ ├── backgrounds │ │ │ ├── bg-dots.png │ │ │ ├── education-bg.png │ │ │ ├── map.png │ │ │ └── team-bg.png │ │ ├── blog │ │ │ ├── post-1.jpg │ │ │ ├── post-2.jpg │ │ │ ├── post-3.jpg │ │ │ ├── post-4.jpg │ │ │ ├── post-5.jpg │ │ │ └── post-6.jpg │ │ ├── clients-logo │ │ │ ├── client-logo-1.png │ │ │ ├── client-logo-2.png │ │ │ ├── client-logo-3.png │ │ │ ├── client-logo-4.png │ │ │ └── client-logo-5.png │ │ ├── experience │ │ │ ├── icon-1.png │ │ │ ├── icon-2.png │ │ │ └── icon-3.png │ │ ├── favicon.png │ │ ├── icons │ │ │ ├── design.png │ │ │ ├── plan.png │ │ │ └── print.png │ │ ├── illustrations │ │ │ ├── dots-cyan.svg │ │ │ ├── dots-group-cyan.svg │ │ │ ├── dots-group-orange.svg │ │ │ ├── dots-group-sm.svg │ │ │ ├── dots-group-v.svg │ │ │ ├── dots-orange.svg │ │ │ ├── leaf-bg-top.svg │ │ │ ├── leaf-bg.png │ │ │ ├── leaf-bg.svg │ │ │ ├── leaf-cyan-2.svg │ │ │ ├── leaf-cyan-lg.svg │ │ │ ├── leaf-cyan.svg │ │ │ ├── leaf-orange.svg │ │ │ ├── leaf-pink-round.svg │ │ │ ├── leaf-pink.svg │ │ │ ├── leaf-yellow.svg │ │ │ ├── page-title.png │ │ │ └── page-title.svg │ │ ├── marker.png │ │ ├── portfolio │ │ │ ├── item-1.png │ │ │ ├── item-2.png │ │ │ ├── item-3.png │ │ │ ├── item-4.png │ │ │ ├── item-5.png │ │ │ ├── item-6.png │ │ │ ├── item-7.png │ │ │ └── item-8.png │ │ ├── preloader.gif │ │ ├── team │ │ │ ├── member-1.png │ │ │ ├── member-2.png │ │ │ └── member-3.png │ │ └── testimonial │ │ │ ├── client-1.png │ │ │ ├── client-2.png │ │ │ └── client-3.png │ └── scss │ │ └── custom.scss ├── config │ └── _default │ │ ├── hugo.toml │ │ ├── languages.toml │ │ ├── menus.en.toml │ │ ├── module.toml │ │ └── params.toml ├── content │ └── english │ │ ├── _index.md │ │ ├── about.md │ │ ├── blog │ │ ├── _index.md │ │ ├── post-1.md │ │ ├── post-2.md │ │ ├── post-3.md │ │ ├── post-4.md │ │ ├── post-5.md │ │ └── post-6.md │ │ ├── contact.md │ │ └── portfolio │ │ ├── _index.md │ │ ├── project-1.md │ │ ├── project-2.md │ │ ├── project-3.md │ │ ├── project-4.md │ │ ├── project-5.md │ │ ├── project-6.md │ │ ├── project-7.md │ │ ├── project-8.md │ │ └── project-9.md ├── go.mod ├── hugo.toml ├── i18n │ └── en.yaml ├── postcss.config.js └── static │ └── images │ └── illustrations │ ├── dots-cyan.svg │ ├── dots-group-cyan.svg │ ├── dots-group-orange.svg │ ├── dots-group-sm.svg │ ├── dots-group-v.svg │ ├── dots-orange.svg │ ├── leaf-bg-top.svg │ ├── leaf-bg.png │ ├── leaf-bg.svg │ ├── leaf-cyan-2.svg │ ├── leaf-cyan-lg.svg │ ├── leaf-cyan.svg │ ├── leaf-orange.svg │ ├── leaf-pink-round.svg │ ├── leaf-pink.svg │ ├── leaf-yellow.svg │ ├── page-title.png │ └── page-title.svg ├── images ├── screenshot.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── about.html │ ├── baseof.html │ ├── contact.html │ ├── list.html │ ├── post.html │ └── single.html ├── index.html ├── partials │ ├── components │ │ ├── client-slider.html │ │ └── page-title.html │ └── essentials │ │ ├── footer.html │ │ ├── head.html │ │ ├── header.html │ │ ├── script.html │ │ └── style.html └── portfolio │ ├── list.html │ └── single.html ├── netlify.toml ├── package.json ├── scripts ├── clearModules.js ├── projectSetup.js └── themeSetup.js ├── static └── sitepins-manifest.json ├── vercel-build.sh ├── vercel.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.forestry/front_matter/templates/author.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/.forestry/front_matter/templates/author.yml -------------------------------------------------------------------------------- /.forestry/front_matter/templates/post.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/.forestry/front_matter/templates/post.yml -------------------------------------------------------------------------------- /.forestry/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/.forestry/settings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esversion": 8 3 | } 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/.prettierrc -------------------------------------------------------------------------------- /.sitepins/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/.sitepins/config.json -------------------------------------------------------------------------------- /.sitepins/schema/blog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/.sitepins/schema/blog.json -------------------------------------------------------------------------------- /.sitepins/schema/portfolio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/.sitepins/schema/portfolio.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/assets/js/bootstrap.js -------------------------------------------------------------------------------- /assets/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/assets/js/script.js -------------------------------------------------------------------------------- /assets/plugins/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/assets/plugins/jquery/jquery.min.js -------------------------------------------------------------------------------- /assets/plugins/shuffle/shuffle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/assets/plugins/shuffle/shuffle.min.js -------------------------------------------------------------------------------- /assets/plugins/swiper/swiper-bundle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/assets/plugins/swiper/swiper-bundle.css -------------------------------------------------------------------------------- /assets/plugins/swiper/swiper-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/assets/plugins/swiper/swiper-bundle.js -------------------------------------------------------------------------------- /assets/plugins/webfont/webfont-loader-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/assets/plugins/webfont/webfont-loader-2.js -------------------------------------------------------------------------------- /assets/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/assets/scss/_buttons.scss -------------------------------------------------------------------------------- /assets/scss/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/assets/scss/_common.scss -------------------------------------------------------------------------------- /assets/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/assets/scss/_mixins.scss -------------------------------------------------------------------------------- /assets/scss/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/assets/scss/_typography.scss -------------------------------------------------------------------------------- /assets/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/assets/scss/style.scss -------------------------------------------------------------------------------- /assets/scss/templates/_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/assets/scss/templates/_bootstrap.scss -------------------------------------------------------------------------------- /assets/scss/templates/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/assets/scss/templates/_footer.scss -------------------------------------------------------------------------------- /assets/scss/templates/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/assets/scss/templates/_main.scss -------------------------------------------------------------------------------- /assets/scss/templates/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/assets/scss/templates/_navigation.scss -------------------------------------------------------------------------------- /exampleSite/assets/images/about/author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/about/author.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/about/signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/about/signature.png -------------------------------------------------------------------------------- /exampleSite/assets/images/backgrounds/bg-dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/backgrounds/bg-dots.png -------------------------------------------------------------------------------- /exampleSite/assets/images/backgrounds/education-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/backgrounds/education-bg.png -------------------------------------------------------------------------------- /exampleSite/assets/images/backgrounds/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/backgrounds/map.png -------------------------------------------------------------------------------- /exampleSite/assets/images/backgrounds/team-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/backgrounds/team-bg.png -------------------------------------------------------------------------------- /exampleSite/assets/images/blog/post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/blog/post-1.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/blog/post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/blog/post-2.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/blog/post-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/blog/post-3.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/blog/post-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/blog/post-4.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/blog/post-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/blog/post-5.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/blog/post-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/blog/post-6.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/clients-logo/client-logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/clients-logo/client-logo-1.png -------------------------------------------------------------------------------- /exampleSite/assets/images/clients-logo/client-logo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/clients-logo/client-logo-2.png -------------------------------------------------------------------------------- /exampleSite/assets/images/clients-logo/client-logo-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/clients-logo/client-logo-3.png -------------------------------------------------------------------------------- /exampleSite/assets/images/clients-logo/client-logo-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/clients-logo/client-logo-4.png -------------------------------------------------------------------------------- /exampleSite/assets/images/clients-logo/client-logo-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/clients-logo/client-logo-5.png -------------------------------------------------------------------------------- /exampleSite/assets/images/experience/icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/experience/icon-1.png -------------------------------------------------------------------------------- /exampleSite/assets/images/experience/icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/experience/icon-2.png -------------------------------------------------------------------------------- /exampleSite/assets/images/experience/icon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/experience/icon-3.png -------------------------------------------------------------------------------- /exampleSite/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/favicon.png -------------------------------------------------------------------------------- /exampleSite/assets/images/icons/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/icons/design.png -------------------------------------------------------------------------------- /exampleSite/assets/images/icons/plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/icons/plan.png -------------------------------------------------------------------------------- /exampleSite/assets/images/icons/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/icons/print.png -------------------------------------------------------------------------------- /exampleSite/assets/images/illustrations/dots-cyan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/illustrations/dots-cyan.svg -------------------------------------------------------------------------------- /exampleSite/assets/images/illustrations/dots-group-cyan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/illustrations/dots-group-cyan.svg -------------------------------------------------------------------------------- /exampleSite/assets/images/illustrations/dots-group-orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/illustrations/dots-group-orange.svg -------------------------------------------------------------------------------- /exampleSite/assets/images/illustrations/dots-group-sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/illustrations/dots-group-sm.svg -------------------------------------------------------------------------------- /exampleSite/assets/images/illustrations/dots-group-v.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/illustrations/dots-group-v.svg -------------------------------------------------------------------------------- /exampleSite/assets/images/illustrations/dots-orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/illustrations/dots-orange.svg -------------------------------------------------------------------------------- /exampleSite/assets/images/illustrations/leaf-bg-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/illustrations/leaf-bg-top.svg -------------------------------------------------------------------------------- /exampleSite/assets/images/illustrations/leaf-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/illustrations/leaf-bg.png -------------------------------------------------------------------------------- /exampleSite/assets/images/illustrations/leaf-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/illustrations/leaf-bg.svg -------------------------------------------------------------------------------- /exampleSite/assets/images/illustrations/leaf-cyan-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/illustrations/leaf-cyan-2.svg -------------------------------------------------------------------------------- /exampleSite/assets/images/illustrations/leaf-cyan-lg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/illustrations/leaf-cyan-lg.svg -------------------------------------------------------------------------------- /exampleSite/assets/images/illustrations/leaf-cyan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/illustrations/leaf-cyan.svg -------------------------------------------------------------------------------- /exampleSite/assets/images/illustrations/leaf-orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/illustrations/leaf-orange.svg -------------------------------------------------------------------------------- /exampleSite/assets/images/illustrations/leaf-pink-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/illustrations/leaf-pink-round.svg -------------------------------------------------------------------------------- /exampleSite/assets/images/illustrations/leaf-pink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/illustrations/leaf-pink.svg -------------------------------------------------------------------------------- /exampleSite/assets/images/illustrations/leaf-yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/illustrations/leaf-yellow.svg -------------------------------------------------------------------------------- /exampleSite/assets/images/illustrations/page-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/illustrations/page-title.png -------------------------------------------------------------------------------- /exampleSite/assets/images/illustrations/page-title.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/illustrations/page-title.svg -------------------------------------------------------------------------------- /exampleSite/assets/images/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/marker.png -------------------------------------------------------------------------------- /exampleSite/assets/images/portfolio/item-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/portfolio/item-1.png -------------------------------------------------------------------------------- /exampleSite/assets/images/portfolio/item-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/portfolio/item-2.png -------------------------------------------------------------------------------- /exampleSite/assets/images/portfolio/item-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/portfolio/item-3.png -------------------------------------------------------------------------------- /exampleSite/assets/images/portfolio/item-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/portfolio/item-4.png -------------------------------------------------------------------------------- /exampleSite/assets/images/portfolio/item-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/portfolio/item-5.png -------------------------------------------------------------------------------- /exampleSite/assets/images/portfolio/item-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/portfolio/item-6.png -------------------------------------------------------------------------------- /exampleSite/assets/images/portfolio/item-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/portfolio/item-7.png -------------------------------------------------------------------------------- /exampleSite/assets/images/portfolio/item-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/portfolio/item-8.png -------------------------------------------------------------------------------- /exampleSite/assets/images/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/preloader.gif -------------------------------------------------------------------------------- /exampleSite/assets/images/team/member-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/team/member-1.png -------------------------------------------------------------------------------- /exampleSite/assets/images/team/member-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/team/member-2.png -------------------------------------------------------------------------------- /exampleSite/assets/images/team/member-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/team/member-3.png -------------------------------------------------------------------------------- /exampleSite/assets/images/testimonial/client-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/testimonial/client-1.png -------------------------------------------------------------------------------- /exampleSite/assets/images/testimonial/client-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/testimonial/client-2.png -------------------------------------------------------------------------------- /exampleSite/assets/images/testimonial/client-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/assets/images/testimonial/client-3.png -------------------------------------------------------------------------------- /exampleSite/assets/scss/custom.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/config/_default/hugo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/config/_default/hugo.toml -------------------------------------------------------------------------------- /exampleSite/config/_default/languages.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/config/_default/languages.toml -------------------------------------------------------------------------------- /exampleSite/config/_default/menus.en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/config/_default/menus.en.toml -------------------------------------------------------------------------------- /exampleSite/config/_default/module.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/config/_default/module.toml -------------------------------------------------------------------------------- /exampleSite/config/_default/params.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/config/_default/params.toml -------------------------------------------------------------------------------- /exampleSite/content/english/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/content/english/_index.md -------------------------------------------------------------------------------- /exampleSite/content/english/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/content/english/about.md -------------------------------------------------------------------------------- /exampleSite/content/english/blog/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/content/english/blog/_index.md -------------------------------------------------------------------------------- /exampleSite/content/english/blog/post-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/content/english/blog/post-1.md -------------------------------------------------------------------------------- /exampleSite/content/english/blog/post-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/content/english/blog/post-2.md -------------------------------------------------------------------------------- /exampleSite/content/english/blog/post-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/content/english/blog/post-3.md -------------------------------------------------------------------------------- /exampleSite/content/english/blog/post-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/content/english/blog/post-4.md -------------------------------------------------------------------------------- /exampleSite/content/english/blog/post-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/content/english/blog/post-5.md -------------------------------------------------------------------------------- /exampleSite/content/english/blog/post-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/content/english/blog/post-6.md -------------------------------------------------------------------------------- /exampleSite/content/english/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/content/english/contact.md -------------------------------------------------------------------------------- /exampleSite/content/english/portfolio/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/content/english/portfolio/_index.md -------------------------------------------------------------------------------- /exampleSite/content/english/portfolio/project-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/content/english/portfolio/project-1.md -------------------------------------------------------------------------------- /exampleSite/content/english/portfolio/project-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/content/english/portfolio/project-2.md -------------------------------------------------------------------------------- /exampleSite/content/english/portfolio/project-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/content/english/portfolio/project-3.md -------------------------------------------------------------------------------- /exampleSite/content/english/portfolio/project-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/content/english/portfolio/project-4.md -------------------------------------------------------------------------------- /exampleSite/content/english/portfolio/project-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/content/english/portfolio/project-5.md -------------------------------------------------------------------------------- /exampleSite/content/english/portfolio/project-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/content/english/portfolio/project-6.md -------------------------------------------------------------------------------- /exampleSite/content/english/portfolio/project-7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/content/english/portfolio/project-7.md -------------------------------------------------------------------------------- /exampleSite/content/english/portfolio/project-8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/content/english/portfolio/project-8.md -------------------------------------------------------------------------------- /exampleSite/content/english/portfolio/project-9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/content/english/portfolio/project-9.md -------------------------------------------------------------------------------- /exampleSite/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/go.mod -------------------------------------------------------------------------------- /exampleSite/hugo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/hugo.toml -------------------------------------------------------------------------------- /exampleSite/i18n/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/i18n/en.yaml -------------------------------------------------------------------------------- /exampleSite/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/postcss.config.js -------------------------------------------------------------------------------- /exampleSite/static/images/illustrations/dots-cyan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/static/images/illustrations/dots-cyan.svg -------------------------------------------------------------------------------- /exampleSite/static/images/illustrations/dots-group-cyan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/static/images/illustrations/dots-group-cyan.svg -------------------------------------------------------------------------------- /exampleSite/static/images/illustrations/dots-group-orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/static/images/illustrations/dots-group-orange.svg -------------------------------------------------------------------------------- /exampleSite/static/images/illustrations/dots-group-sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/static/images/illustrations/dots-group-sm.svg -------------------------------------------------------------------------------- /exampleSite/static/images/illustrations/dots-group-v.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/static/images/illustrations/dots-group-v.svg -------------------------------------------------------------------------------- /exampleSite/static/images/illustrations/dots-orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/static/images/illustrations/dots-orange.svg -------------------------------------------------------------------------------- /exampleSite/static/images/illustrations/leaf-bg-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/static/images/illustrations/leaf-bg-top.svg -------------------------------------------------------------------------------- /exampleSite/static/images/illustrations/leaf-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/static/images/illustrations/leaf-bg.png -------------------------------------------------------------------------------- /exampleSite/static/images/illustrations/leaf-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/static/images/illustrations/leaf-bg.svg -------------------------------------------------------------------------------- /exampleSite/static/images/illustrations/leaf-cyan-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/static/images/illustrations/leaf-cyan-2.svg -------------------------------------------------------------------------------- /exampleSite/static/images/illustrations/leaf-cyan-lg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/static/images/illustrations/leaf-cyan-lg.svg -------------------------------------------------------------------------------- /exampleSite/static/images/illustrations/leaf-cyan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/static/images/illustrations/leaf-cyan.svg -------------------------------------------------------------------------------- /exampleSite/static/images/illustrations/leaf-orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/static/images/illustrations/leaf-orange.svg -------------------------------------------------------------------------------- /exampleSite/static/images/illustrations/leaf-pink-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/static/images/illustrations/leaf-pink-round.svg -------------------------------------------------------------------------------- /exampleSite/static/images/illustrations/leaf-pink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/static/images/illustrations/leaf-pink.svg -------------------------------------------------------------------------------- /exampleSite/static/images/illustrations/leaf-yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/static/images/illustrations/leaf-yellow.svg -------------------------------------------------------------------------------- /exampleSite/static/images/illustrations/page-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/static/images/illustrations/page-title.png -------------------------------------------------------------------------------- /exampleSite/static/images/illustrations/page-title.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/exampleSite/static/images/illustrations/page-title.svg -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/images/tn.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/_default/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/layouts/_default/about.html -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/layouts/_default/contact.html -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/layouts/_default/post.html -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/partials/components/client-slider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/layouts/partials/components/client-slider.html -------------------------------------------------------------------------------- /layouts/partials/components/page-title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/layouts/partials/components/page-title.html -------------------------------------------------------------------------------- /layouts/partials/essentials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/layouts/partials/essentials/footer.html -------------------------------------------------------------------------------- /layouts/partials/essentials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/layouts/partials/essentials/head.html -------------------------------------------------------------------------------- /layouts/partials/essentials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/layouts/partials/essentials/header.html -------------------------------------------------------------------------------- /layouts/partials/essentials/script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/layouts/partials/essentials/script.html -------------------------------------------------------------------------------- /layouts/partials/essentials/style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/layouts/partials/essentials/style.html -------------------------------------------------------------------------------- /layouts/portfolio/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/layouts/portfolio/list.html -------------------------------------------------------------------------------- /layouts/portfolio/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/layouts/portfolio/single.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/package.json -------------------------------------------------------------------------------- /scripts/clearModules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/scripts/clearModules.js -------------------------------------------------------------------------------- /scripts/projectSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/scripts/projectSetup.js -------------------------------------------------------------------------------- /scripts/themeSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/scripts/themeSetup.js -------------------------------------------------------------------------------- /static/sitepins-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/static/sitepins-manifest.json -------------------------------------------------------------------------------- /vercel-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/vercel-build.sh -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/vercel.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-hugo/HEAD/yarn.lock --------------------------------------------------------------------------------