├── .editorconfig ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── assets ├── css │ ├── components │ │ ├── all.css │ │ ├── chroma.css │ │ ├── chroma_dark.css │ │ ├── code.css │ │ ├── dd.css │ │ ├── fonts.css │ │ ├── helpers.css │ │ ├── highlight.css │ │ ├── prose.css │ │ ├── search.css │ │ └── variables.css │ ├── sections │ │ ├── all.css │ │ └── documentation.css │ └── styles.css └── js │ ├── body-start │ └── index.js │ └── main │ ├── index.js │ └── nav │ ├── alpine-turbo-bridge.js │ ├── doctree.js │ ├── index.js │ └── nav-store.js ├── config.toml ├── data ├── docs.json ├── homepagetweets.toml └── sponsors.toml ├── exampleSite ├── .hugo_build.lock ├── archetypes │ └── namespace │ │ └── index.md ├── config.toml ├── config │ └── _default │ │ ├── languages.toml │ │ ├── markup.toml │ │ └── menus │ │ ├── menus.en.toml │ │ └── menus.zh.toml ├── content │ └── en │ │ ├── documentation │ │ ├── _index.md │ │ ├── explanation │ │ │ ├── _index.md │ │ │ ├── content-management │ │ │ │ ├── _index.md │ │ │ │ ├── archetypes.md │ │ │ │ ├── authors.md │ │ │ │ ├── build-options.md │ │ │ │ ├── comments.md │ │ │ │ ├── cross-references.md │ │ │ │ ├── formats.md │ │ │ │ ├── front-matter.md │ │ │ │ ├── image-processing │ │ │ │ │ ├── index.md │ │ │ │ │ └── sunset.jpg │ │ │ │ ├── menus.md │ │ │ │ ├── multilingual.md │ │ │ │ ├── organization │ │ │ │ │ ├── 1-featured-content-bundles.png │ │ │ │ │ └── index.md │ │ │ │ ├── page-bundles.md │ │ │ │ ├── page-resources.md │ │ │ │ ├── related.md │ │ │ │ ├── shortcodes.md │ │ │ │ ├── static-files.md │ │ │ │ ├── summaries.md │ │ │ │ ├── syntax-highlighting.md │ │ │ │ ├── taxonomies.md │ │ │ │ ├── toc.md │ │ │ │ ├── types.md │ │ │ │ └── urls.md │ │ │ ├── refexamples │ │ │ │ ├── _index.md │ │ │ │ └── multiplication-explained.md │ │ │ └── templates │ │ │ │ ├── 404.md │ │ │ │ ├── _index.md │ │ │ │ ├── alternatives.md │ │ │ │ ├── base.md │ │ │ │ ├── data-templates.md │ │ │ │ ├── files.md │ │ │ │ ├── homepage.md │ │ │ │ ├── internal.md │ │ │ │ ├── introduction.md │ │ │ │ ├── lists.md │ │ │ │ ├── lookup-order.md │ │ │ │ ├── menu-templates.md │ │ │ │ ├── ordering-and-grouping.md │ │ │ │ ├── output-formats.md │ │ │ │ ├── pagination.md │ │ │ │ ├── partials.md │ │ │ │ ├── robots.md │ │ │ │ ├── rss.md │ │ │ │ ├── section-templates.md │ │ │ │ ├── shortcode-templates.md │ │ │ │ ├── single-page-templates.md │ │ │ │ ├── sitemap-template.md │ │ │ │ ├── taxonomy-templates.md │ │ │ │ ├── template-debugging.md │ │ │ │ └── views.md │ │ ├── guides │ │ │ ├── _index.md │ │ │ └── how-to-use-modbool.md │ │ ├── reference │ │ │ ├── _index.md │ │ │ ├── functions │ │ │ │ ├── _index.md │ │ │ │ └── tpl │ │ │ │ │ ├── cast │ │ │ │ │ └── cast │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── collections │ │ │ │ │ └── collections │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── compare │ │ │ │ │ └── compare │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── crypto │ │ │ │ │ └── crypto │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── data │ │ │ │ │ └── data │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── debug │ │ │ │ │ └── debug │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── diagrams │ │ │ │ │ └── diagrams │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── encoding │ │ │ │ │ └── encoding │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── fmt │ │ │ │ │ └── fmt │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── hugo │ │ │ │ │ └── hugo │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── images │ │ │ │ │ └── images │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── inflect │ │ │ │ │ └── inflect │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── internal │ │ │ │ │ └── internal │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── js │ │ │ │ │ └── js │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── lang │ │ │ │ │ └── lang │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── math │ │ │ │ │ └── math │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── openapi │ │ │ │ │ └── openapi3 │ │ │ │ │ │ └── openapi │ │ │ │ │ │ └── openapi3 │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── os │ │ │ │ │ └── os │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── partials │ │ │ │ │ └── partials │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── path │ │ │ │ │ └── path │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── reflect │ │ │ │ │ └── reflect │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── safe │ │ │ │ │ └── safe │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── site │ │ │ │ │ └── site │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── strings │ │ │ │ │ └── strings │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── templates │ │ │ │ │ └── templates │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── time │ │ │ │ │ └── time │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── transform │ │ │ │ │ └── transform │ │ │ │ │ │ └── index.md │ │ │ │ │ └── urls │ │ │ │ │ └── urls │ │ │ │ │ └── index.md │ │ │ ├── gotypes │ │ │ │ └── index.md │ │ │ └── objects │ │ │ │ ├── _index.md │ │ │ │ ├── hugo │ │ │ │ └── index.md │ │ │ │ ├── hugoinfo │ │ │ │ └── index.md │ │ │ │ ├── langs │ │ │ │ └── language │ │ │ │ │ └── index.md │ │ │ │ ├── media │ │ │ │ └── type │ │ │ │ │ └── index.md │ │ │ │ ├── navigation │ │ │ │ ├── _index.md │ │ │ │ └── menus │ │ │ │ │ └── index.md │ │ │ │ └── site │ │ │ │ └── index.md │ │ └── tutorials │ │ │ ├── _index.md │ │ │ └── hosting-and-deployment │ │ │ ├── _index.md │ │ │ ├── deployment-with-nanobox.md │ │ │ ├── deployment-with-rsync.md │ │ │ ├── deployment-with-wercker.md │ │ │ ├── hosting-on-aws-amplify.md │ │ │ ├── hosting-on-bitbucket.md │ │ │ ├── hosting-on-firebase.md │ │ │ ├── hosting-on-github.md │ │ │ ├── hosting-on-gitlab.md │ │ │ ├── hosting-on-keycdn.md │ │ │ ├── hosting-on-netlify.md │ │ │ ├── hosting-on-render.md │ │ │ └── hugo-deploy.md │ │ └── tags │ │ └── is_resource │ │ └── _index.md ├── go.mod ├── go.sum ├── package-lock.json ├── package.hugo.json └── package.json ├── go.mod ├── go.sum ├── layouts ├── 404.html ├── _default │ ├── _markup │ │ └── render-heading.html │ ├── baseof.html │ ├── list.html │ ├── page.html │ └── single.html ├── documentation │ ├── baseof.html │ └── single.html ├── index.doctree.json ├── index.headers ├── index.html ├── index.redir ├── news │ ├── list.html │ └── single.html ├── partials │ ├── boxes-section-summaries.html │ ├── boxes-small-news.html │ ├── documentation │ │ ├── functions-signature.html │ │ └── reference │ │ │ ├── list-namespace.html │ │ │ └── namespace-toc.html │ ├── gtag.html │ ├── head-additions.html │ ├── helpers │ │ ├── docs │ │ │ └── get-func.html │ │ ├── funcs │ │ │ └── color-from-string.html │ │ └── script-src.html │ ├── hero.html │ ├── home-page-sections │ │ ├── features-icons.html │ │ ├── features-single.html │ │ ├── showcase.html │ │ ├── showcase2.html │ │ ├── sponsors.html │ │ └── testimonials.html │ ├── page-edit.html │ ├── previous-next-links-in-section-with-title.html │ ├── previous-next-links-in-section.html │ ├── sections │ │ ├── common │ │ │ ├── after-body-start.html │ │ │ ├── before-body-end.html │ │ │ └── head.html │ │ └── nav │ │ │ ├── breadcrumbs.html │ │ │ ├── docs-explorer copy.html │ │ │ ├── docs-explorer.html │ │ │ ├── fake-searchinput.html │ │ │ ├── footer.html │ │ │ ├── icons.html │ │ │ ├── menu.html │ │ │ ├── search-results.html │ │ │ ├── search.html │ │ │ └── theme.html │ ├── site-manifest.html │ ├── svg │ │ ├── exclamation.svg │ │ ├── ic_chevron_left_black_24px.svg │ │ ├── ic_chevron_right_black_24px.svg │ │ └── link-ext.svg │ └── toc.html ├── shortcodes │ ├── chroma-lexers.html │ ├── code-toggle.html │ ├── code.html │ ├── datatable-filtered.html │ ├── datatable.html │ ├── docs │ │ ├── func-aliases.html │ │ └── func-examples.html │ ├── gh.html │ ├── imgproc.html │ ├── new-in.html │ ├── note.html │ ├── output.html │ ├── page-kinds.html │ ├── readfile.html │ ├── tip.html │ └── warning.html └── showcase │ └── single.html ├── netlify.toml ├── package.hugo.json ├── package.json ├── postcss.config.js ├── static ├── android-chrome-144x144.png ├── android-chrome-192x192.png ├── android-chrome-256x256.png ├── android-chrome-36x36.png ├── android-chrome-48x48.png ├── android-chrome-72x72.png ├── android-chrome-96x96.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── fonts │ ├── mulish-v10-latin-200.woff │ ├── mulish-v10-latin-200.woff2 │ ├── mulish-v10-latin-800.woff │ ├── mulish-v10-latin-800.woff2 │ ├── mulish-v10-latin-800italic.woff │ ├── mulish-v10-latin-800italic.woff2 │ ├── mulish-v10-latin-italic.woff │ ├── mulish-v10-latin-italic.woff2 │ ├── mulish-v10-latin-regular.woff │ └── mulish-v10-latin-regular.woff2 ├── images │ ├── GitHub-Mark-64px.png │ ├── gohugoio-card.png │ ├── gopher-hero.svg │ ├── gopher-side_color.svg │ ├── home-page-templating-example.png │ ├── homepage-screenshot-hugo-themes.jpg │ ├── homepage-screenshot-hugo-themes_not-optimized-according-to-google.jpg │ ├── hugo-logo-wide.svg │ ├── icon-built-in-templates.svg │ ├── icon-content-management.svg │ ├── icon-fast.svg │ ├── icon-multilingual.svg │ ├── icon-multilingual2.svg │ ├── icon-search.png │ ├── icon-shortcodes.svg │ ├── netlify-dark.svg │ ├── site-hierarchy.svg │ └── sponsors │ │ ├── brave-logo.svg │ │ ├── esolia-logo.svg │ │ ├── forestry-logotype.svg │ │ └── linode-logo_standard_light_medium.png ├── mstile-144x144.png ├── mstile-150x150.png └── mstile-310x310.png └── tailwind.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/components/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/assets/css/components/all.css -------------------------------------------------------------------------------- /assets/css/components/chroma.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/assets/css/components/chroma.css -------------------------------------------------------------------------------- /assets/css/components/chroma_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/assets/css/components/chroma_dark.css -------------------------------------------------------------------------------- /assets/css/components/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/assets/css/components/code.css -------------------------------------------------------------------------------- /assets/css/components/dd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/assets/css/components/dd.css -------------------------------------------------------------------------------- /assets/css/components/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/assets/css/components/fonts.css -------------------------------------------------------------------------------- /assets/css/components/helpers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/assets/css/components/helpers.css -------------------------------------------------------------------------------- /assets/css/components/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/assets/css/components/highlight.css -------------------------------------------------------------------------------- /assets/css/components/prose.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/assets/css/components/prose.css -------------------------------------------------------------------------------- /assets/css/components/search.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .algolia-docsearch-suggestion--highlight { 4 | @apply bg-yellow-50; 5 | } -------------------------------------------------------------------------------- /assets/css/components/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/assets/css/components/variables.css -------------------------------------------------------------------------------- /assets/css/sections/all.css: -------------------------------------------------------------------------------- 1 | @import "documentation.css"; 2 | -------------------------------------------------------------------------------- /assets/css/sections/documentation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/assets/css/sections/documentation.css -------------------------------------------------------------------------------- /assets/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/assets/css/styles.css -------------------------------------------------------------------------------- /assets/js/body-start/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/assets/js/body-start/index.js -------------------------------------------------------------------------------- /assets/js/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/assets/js/main/index.js -------------------------------------------------------------------------------- /assets/js/main/nav/alpine-turbo-bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/assets/js/main/nav/alpine-turbo-bridge.js -------------------------------------------------------------------------------- /assets/js/main/nav/doctree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/assets/js/main/nav/doctree.js -------------------------------------------------------------------------------- /assets/js/main/nav/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/assets/js/main/nav/index.js -------------------------------------------------------------------------------- /assets/js/main/nav/nav-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/assets/js/main/nav/nav-store.js -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/config.toml -------------------------------------------------------------------------------- /data/docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/data/docs.json -------------------------------------------------------------------------------- /data/homepagetweets.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/data/homepagetweets.toml -------------------------------------------------------------------------------- /data/sponsors.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/data/sponsors.toml -------------------------------------------------------------------------------- /exampleSite/.hugo_build.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/archetypes/namespace/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/archetypes/namespace/index.md -------------------------------------------------------------------------------- /exampleSite/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/config.toml -------------------------------------------------------------------------------- /exampleSite/config/_default/languages.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/config/_default/languages.toml -------------------------------------------------------------------------------- /exampleSite/config/_default/markup.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/config/_default/markup.toml -------------------------------------------------------------------------------- /exampleSite/config/_default/menus/menus.en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/config/_default/menus/menus.en.toml -------------------------------------------------------------------------------- /exampleSite/config/_default/menus/menus.zh.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/config/_default/menus/menus.zh.toml -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/_index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/_index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/_index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/archetypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/archetypes.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/authors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/authors.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/build-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/build-options.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/comments.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/cross-references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/cross-references.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/formats.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/front-matter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/front-matter.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/image-processing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/image-processing/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/image-processing/sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/image-processing/sunset.jpg -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/menus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/menus.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/multilingual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/multilingual.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/organization/1-featured-content-bundles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/organization/1-featured-content-bundles.png -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/organization/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/organization/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/page-bundles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/page-bundles.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/page-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/page-resources.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/related.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/related.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/shortcodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/shortcodes.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/static-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/static-files.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/summaries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/summaries.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/syntax-highlighting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/syntax-highlighting.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/taxonomies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/taxonomies.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/toc.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/types.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/content-management/urls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/content-management/urls.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/refexamples/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Ref Examples 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/refexamples/multiplication-explained.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/refexamples/multiplication-explained.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/404.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/_index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/alternatives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/alternatives.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/base.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/data-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/data-templates.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/files.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/homepage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/homepage.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/internal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/internal.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/introduction.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/lists.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/lookup-order.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/lookup-order.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/menu-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/menu-templates.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/ordering-and-grouping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/ordering-and-grouping.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/output-formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/output-formats.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/pagination.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/partials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/partials.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/robots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/robots.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/rss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/rss.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/section-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/section-templates.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/shortcode-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/shortcode-templates.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/single-page-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/single-page-templates.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/sitemap-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/sitemap-template.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/taxonomy-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/taxonomy-templates.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/template-debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/template-debugging.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/explanation/templates/views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/explanation/templates/views.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/guides/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/guides/_index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/guides/how-to-use-modbool.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to use the modBool function 3 | keywords: ["math"] 4 | --- -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/_index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/_index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/cast/cast/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/cast/cast/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/collections/collections/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/collections/collections/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/compare/compare/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/compare/compare/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/crypto/crypto/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/crypto/crypto/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/data/data/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/data/data/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/debug/debug/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/debug/debug/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/diagrams/diagrams/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/diagrams/diagrams/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/encoding/encoding/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/encoding/encoding/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/fmt/fmt/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/fmt/fmt/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/hugo/hugo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/hugo/hugo/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/images/images/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/images/images/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/inflect/inflect/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/inflect/inflect/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/internal/internal/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/internal/internal/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/js/js/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/js/js/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/lang/lang/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/lang/lang/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/math/math/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/math/math/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/openapi/openapi3/openapi/openapi3/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/openapi/openapi3/openapi/openapi3/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/os/os/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/os/os/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/partials/partials/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/partials/partials/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/path/path/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/path/path/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/reflect/reflect/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/reflect/reflect/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/safe/safe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/safe/safe/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/site/site/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/site/site/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/strings/strings/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/strings/strings/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/templates/templates/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/templates/templates/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/time/time/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/time/time/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/transform/transform/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/transform/transform/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/functions/tpl/urls/urls/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/functions/tpl/urls/urls/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/gotypes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/gotypes/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/objects/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Objects 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/objects/hugo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/objects/hugo/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/objects/hugoinfo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/objects/hugoinfo/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/objects/langs/language/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/objects/langs/language/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/objects/media/type/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/objects/media/type/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/objects/navigation/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Navigation 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/objects/navigation/menus/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/objects/navigation/menus/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/reference/objects/site/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/reference/objects/site/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/tutorials/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Tutorials" 3 | weight: 30 4 | --- 5 | -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/tutorials/hosting-and-deployment/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/tutorials/hosting-and-deployment/_index.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/tutorials/hosting-and-deployment/deployment-with-nanobox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/tutorials/hosting-and-deployment/deployment-with-nanobox.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/tutorials/hosting-and-deployment/deployment-with-rsync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/tutorials/hosting-and-deployment/deployment-with-rsync.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/tutorials/hosting-and-deployment/deployment-with-wercker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/tutorials/hosting-and-deployment/deployment-with-wercker.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/tutorials/hosting-and-deployment/hosting-on-aws-amplify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/tutorials/hosting-and-deployment/hosting-on-aws-amplify.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/tutorials/hosting-and-deployment/hosting-on-bitbucket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/tutorials/hosting-and-deployment/hosting-on-bitbucket.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/tutorials/hosting-and-deployment/hosting-on-firebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/tutorials/hosting-and-deployment/hosting-on-firebase.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/tutorials/hosting-and-deployment/hosting-on-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/tutorials/hosting-and-deployment/hosting-on-github.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/tutorials/hosting-and-deployment/hosting-on-gitlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/tutorials/hosting-and-deployment/hosting-on-gitlab.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/tutorials/hosting-and-deployment/hosting-on-keycdn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/tutorials/hosting-and-deployment/hosting-on-keycdn.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/tutorials/hosting-and-deployment/hosting-on-netlify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/tutorials/hosting-and-deployment/hosting-on-netlify.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/tutorials/hosting-and-deployment/hosting-on-render.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/tutorials/hosting-and-deployment/hosting-on-render.md -------------------------------------------------------------------------------- /exampleSite/content/en/documentation/tutorials/hosting-and-deployment/hugo-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/content/en/documentation/tutorials/hosting-and-deployment/hugo-deploy.md -------------------------------------------------------------------------------- /exampleSite/content/en/tags/is_resource/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Resource" 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/go.mod -------------------------------------------------------------------------------- /exampleSite/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/go.sum -------------------------------------------------------------------------------- /exampleSite/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/package-lock.json -------------------------------------------------------------------------------- /exampleSite/package.hugo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/package.hugo.json -------------------------------------------------------------------------------- /exampleSite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/exampleSite/package.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/go.sum -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/_default/_markup/render-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/_default/_markup/render-heading.html -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/_default/page.html -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | TODO1 3 | {{ end }} 4 | -------------------------------------------------------------------------------- /layouts/documentation/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/documentation/baseof.html -------------------------------------------------------------------------------- /layouts/documentation/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/documentation/single.html -------------------------------------------------------------------------------- /layouts/index.doctree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/index.doctree.json -------------------------------------------------------------------------------- /layouts/index.headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/index.headers -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/index.redir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/index.redir -------------------------------------------------------------------------------- /layouts/news/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/news/list.html -------------------------------------------------------------------------------- /layouts/news/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/news/single.html -------------------------------------------------------------------------------- /layouts/partials/boxes-section-summaries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/boxes-section-summaries.html -------------------------------------------------------------------------------- /layouts/partials/boxes-small-news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/boxes-small-news.html -------------------------------------------------------------------------------- /layouts/partials/documentation/functions-signature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/documentation/functions-signature.html -------------------------------------------------------------------------------- /layouts/partials/documentation/reference/list-namespace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/documentation/reference/list-namespace.html -------------------------------------------------------------------------------- /layouts/partials/documentation/reference/namespace-toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/documentation/reference/namespace-toc.html -------------------------------------------------------------------------------- /layouts/partials/gtag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/gtag.html -------------------------------------------------------------------------------- /layouts/partials/head-additions.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/partials/helpers/docs/get-func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/helpers/docs/get-func.html -------------------------------------------------------------------------------- /layouts/partials/helpers/funcs/color-from-string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/helpers/funcs/color-from-string.html -------------------------------------------------------------------------------- /layouts/partials/helpers/script-src.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/helpers/script-src.html -------------------------------------------------------------------------------- /layouts/partials/hero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/hero.html -------------------------------------------------------------------------------- /layouts/partials/home-page-sections/features-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/home-page-sections/features-icons.html -------------------------------------------------------------------------------- /layouts/partials/home-page-sections/features-single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/home-page-sections/features-single.html -------------------------------------------------------------------------------- /layouts/partials/home-page-sections/showcase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/home-page-sections/showcase.html -------------------------------------------------------------------------------- /layouts/partials/home-page-sections/showcase2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/home-page-sections/showcase2.html -------------------------------------------------------------------------------- /layouts/partials/home-page-sections/sponsors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/home-page-sections/sponsors.html -------------------------------------------------------------------------------- /layouts/partials/home-page-sections/testimonials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/home-page-sections/testimonials.html -------------------------------------------------------------------------------- /layouts/partials/page-edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/page-edit.html -------------------------------------------------------------------------------- /layouts/partials/previous-next-links-in-section-with-title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/previous-next-links-in-section-with-title.html -------------------------------------------------------------------------------- /layouts/partials/previous-next-links-in-section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/previous-next-links-in-section.html -------------------------------------------------------------------------------- /layouts/partials/sections/common/after-body-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/sections/common/after-body-start.html -------------------------------------------------------------------------------- /layouts/partials/sections/common/before-body-end.html: -------------------------------------------------------------------------------- 1 | {{ partialCached "jslibs/instantpage/script-src.html" "-" }} 2 | -------------------------------------------------------------------------------- /layouts/partials/sections/common/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/sections/common/head.html -------------------------------------------------------------------------------- /layouts/partials/sections/nav/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/sections/nav/breadcrumbs.html -------------------------------------------------------------------------------- /layouts/partials/sections/nav/docs-explorer copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/sections/nav/docs-explorer copy.html -------------------------------------------------------------------------------- /layouts/partials/sections/nav/docs-explorer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/sections/nav/docs-explorer.html -------------------------------------------------------------------------------- /layouts/partials/sections/nav/fake-searchinput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/sections/nav/fake-searchinput.html -------------------------------------------------------------------------------- /layouts/partials/sections/nav/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/sections/nav/footer.html -------------------------------------------------------------------------------- /layouts/partials/sections/nav/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/sections/nav/icons.html -------------------------------------------------------------------------------- /layouts/partials/sections/nav/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/sections/nav/menu.html -------------------------------------------------------------------------------- /layouts/partials/sections/nav/search-results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/sections/nav/search-results.html -------------------------------------------------------------------------------- /layouts/partials/sections/nav/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/sections/nav/search.html -------------------------------------------------------------------------------- /layouts/partials/sections/nav/theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/sections/nav/theme.html -------------------------------------------------------------------------------- /layouts/partials/site-manifest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/site-manifest.html -------------------------------------------------------------------------------- /layouts/partials/svg/exclamation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/partials/svg/ic_chevron_left_black_24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/svg/ic_chevron_left_black_24px.svg -------------------------------------------------------------------------------- /layouts/partials/svg/ic_chevron_right_black_24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/svg/ic_chevron_right_black_24px.svg -------------------------------------------------------------------------------- /layouts/partials/svg/link-ext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/svg/link-ext.svg -------------------------------------------------------------------------------- /layouts/partials/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/partials/toc.html -------------------------------------------------------------------------------- /layouts/shortcodes/chroma-lexers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/shortcodes/chroma-lexers.html -------------------------------------------------------------------------------- /layouts/shortcodes/code-toggle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/shortcodes/code-toggle.html -------------------------------------------------------------------------------- /layouts/shortcodes/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/shortcodes/code.html -------------------------------------------------------------------------------- /layouts/shortcodes/datatable-filtered.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/shortcodes/datatable-filtered.html -------------------------------------------------------------------------------- /layouts/shortcodes/datatable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/shortcodes/datatable.html -------------------------------------------------------------------------------- /layouts/shortcodes/docs/func-aliases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/shortcodes/docs/func-aliases.html -------------------------------------------------------------------------------- /layouts/shortcodes/docs/func-examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/shortcodes/docs/func-examples.html -------------------------------------------------------------------------------- /layouts/shortcodes/gh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/shortcodes/gh.html -------------------------------------------------------------------------------- /layouts/shortcodes/imgproc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/shortcodes/imgproc.html -------------------------------------------------------------------------------- /layouts/shortcodes/new-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/shortcodes/new-in.html -------------------------------------------------------------------------------- /layouts/shortcodes/note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/shortcodes/note.html -------------------------------------------------------------------------------- /layouts/shortcodes/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/shortcodes/output.html -------------------------------------------------------------------------------- /layouts/shortcodes/page-kinds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/shortcodes/page-kinds.html -------------------------------------------------------------------------------- /layouts/shortcodes/readfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/shortcodes/readfile.html -------------------------------------------------------------------------------- /layouts/shortcodes/tip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/shortcodes/tip.html -------------------------------------------------------------------------------- /layouts/shortcodes/warning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/shortcodes/warning.html -------------------------------------------------------------------------------- /layouts/showcase/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/layouts/showcase/single.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.hugo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/package.hugo.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/postcss.config.js -------------------------------------------------------------------------------- /static/android-chrome-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/android-chrome-144x144.png -------------------------------------------------------------------------------- /static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/android-chrome-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/android-chrome-256x256.png -------------------------------------------------------------------------------- /static/android-chrome-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/android-chrome-36x36.png -------------------------------------------------------------------------------- /static/android-chrome-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/android-chrome-48x48.png -------------------------------------------------------------------------------- /static/android-chrome-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/android-chrome-72x72.png -------------------------------------------------------------------------------- /static/android-chrome-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/android-chrome-96x96.png -------------------------------------------------------------------------------- /static/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/browserconfig.xml -------------------------------------------------------------------------------- /static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/favicon-16x16.png -------------------------------------------------------------------------------- /static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/favicon-32x32.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/fonts/mulish-v10-latin-200.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/fonts/mulish-v10-latin-200.woff -------------------------------------------------------------------------------- /static/fonts/mulish-v10-latin-200.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/fonts/mulish-v10-latin-200.woff2 -------------------------------------------------------------------------------- /static/fonts/mulish-v10-latin-800.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/fonts/mulish-v10-latin-800.woff -------------------------------------------------------------------------------- /static/fonts/mulish-v10-latin-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/fonts/mulish-v10-latin-800.woff2 -------------------------------------------------------------------------------- /static/fonts/mulish-v10-latin-800italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/fonts/mulish-v10-latin-800italic.woff -------------------------------------------------------------------------------- /static/fonts/mulish-v10-latin-800italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/fonts/mulish-v10-latin-800italic.woff2 -------------------------------------------------------------------------------- /static/fonts/mulish-v10-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/fonts/mulish-v10-latin-italic.woff -------------------------------------------------------------------------------- /static/fonts/mulish-v10-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/fonts/mulish-v10-latin-italic.woff2 -------------------------------------------------------------------------------- /static/fonts/mulish-v10-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/fonts/mulish-v10-latin-regular.woff -------------------------------------------------------------------------------- /static/fonts/mulish-v10-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/fonts/mulish-v10-latin-regular.woff2 -------------------------------------------------------------------------------- /static/images/GitHub-Mark-64px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/images/GitHub-Mark-64px.png -------------------------------------------------------------------------------- /static/images/gohugoio-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/images/gohugoio-card.png -------------------------------------------------------------------------------- /static/images/gopher-hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/images/gopher-hero.svg -------------------------------------------------------------------------------- /static/images/gopher-side_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/images/gopher-side_color.svg -------------------------------------------------------------------------------- /static/images/home-page-templating-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/images/home-page-templating-example.png -------------------------------------------------------------------------------- /static/images/homepage-screenshot-hugo-themes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/images/homepage-screenshot-hugo-themes.jpg -------------------------------------------------------------------------------- /static/images/homepage-screenshot-hugo-themes_not-optimized-according-to-google.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/images/homepage-screenshot-hugo-themes_not-optimized-according-to-google.jpg -------------------------------------------------------------------------------- /static/images/hugo-logo-wide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/images/hugo-logo-wide.svg -------------------------------------------------------------------------------- /static/images/icon-built-in-templates.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/images/icon-built-in-templates.svg -------------------------------------------------------------------------------- /static/images/icon-content-management.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/images/icon-content-management.svg -------------------------------------------------------------------------------- /static/images/icon-fast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/images/icon-fast.svg -------------------------------------------------------------------------------- /static/images/icon-multilingual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/images/icon-multilingual.svg -------------------------------------------------------------------------------- /static/images/icon-multilingual2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/images/icon-multilingual2.svg -------------------------------------------------------------------------------- /static/images/icon-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/images/icon-search.png -------------------------------------------------------------------------------- /static/images/icon-shortcodes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/images/icon-shortcodes.svg -------------------------------------------------------------------------------- /static/images/netlify-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/images/netlify-dark.svg -------------------------------------------------------------------------------- /static/images/site-hierarchy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/images/site-hierarchy.svg -------------------------------------------------------------------------------- /static/images/sponsors/brave-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/images/sponsors/brave-logo.svg -------------------------------------------------------------------------------- /static/images/sponsors/esolia-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/images/sponsors/esolia-logo.svg -------------------------------------------------------------------------------- /static/images/sponsors/forestry-logotype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/images/sponsors/forestry-logotype.svg -------------------------------------------------------------------------------- /static/images/sponsors/linode-logo_standard_light_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/images/sponsors/linode-logo_standard_light_medium.png -------------------------------------------------------------------------------- /static/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/mstile-144x144.png -------------------------------------------------------------------------------- /static/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/mstile-150x150.png -------------------------------------------------------------------------------- /static/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/static/mstile-310x310.png -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohugoio/gohugoioTheme2/HEAD/tailwind.config.js --------------------------------------------------------------------------------