├── .envrc ├── .github ├── banner.jpg └── bmc-button.png ├── .gitignore ├── LICENSE ├── README.md ├── archetypes └── default.md ├── assets ├── config │ ├── generator.js │ ├── postcss.config.js │ └── tailwind.config.js ├── css │ └── syntax.css ├── js │ └── dark-mode.js └── sass │ ├── _blend.sass │ ├── _position.sass │ ├── _tailwindcss.sass │ ├── _text.sass │ ├── _theme.sass │ ├── _variables.scss │ ├── fonts │ ├── _all.sass │ ├── charter.sass │ └── spectral.sass │ └── styles.sass ├── exampleSite ├── .gitignore ├── LICENSE ├── README.md ├── archetypes │ └── default.md ├── assets │ ├── js │ │ └── console.js │ └── style │ │ ├── style.css │ │ └── theme.sass ├── config.toml ├── content │ ├── en │ │ ├── about │ │ │ └── index.md │ │ ├── blog │ │ │ ├── _index.md │ │ │ └── krabby_patty.md │ │ └── home │ │ │ ├── contact.md │ │ │ ├── experience.md │ │ │ ├── hero.md │ │ │ ├── index.md │ │ │ ├── posts.md │ │ │ └── skills.md │ └── fr │ │ ├── about │ │ └── index.md │ │ ├── blog │ │ ├── _index.md │ │ └── krabby_patty.md │ │ └── home │ │ ├── contact.md │ │ ├── experience.md │ │ ├── hero.md │ │ ├── index.md │ │ ├── posts.md │ │ └── skills.md ├── netlify.toml ├── package-lock.json ├── package.json ├── resources │ └── _gen │ │ └── assets │ │ └── sass │ │ ├── sass │ │ ├── styles.sass_d536e9f722854ec696a0bd459525def6.content │ │ └── styles.sass_d536e9f722854ec696a0bd459525def6.json │ │ └── style │ │ ├── theme.sass_cbdc4778711e418b9c89192b90b1ca19.content │ │ └── theme.sass_cbdc4778711e418b9c89192b90b1ca19.json ├── setup.sh ├── static │ ├── icons │ │ ├── chicken.svg │ │ ├── heat.svg │ │ ├── precision.svg │ │ └── presentation.svg │ └── img │ │ ├── default_banner.webp │ │ ├── krabby_patty.webp │ │ ├── krusty_krab.webp │ │ ├── portrait.jpg │ │ ├── portrait.webp │ │ └── spongebob-krusty-cook.webp └── update.sh ├── flake.lock ├── flake.nix ├── go.mod ├── i18n ├── de.toml ├── en.toml ├── es.toml ├── fr.toml └── it.toml ├── images ├── screenshot.png ├── screenshot_dark.png ├── tn.png └── tn_dark.png ├── layouts ├── 404.html ├── _default │ ├── _markup │ │ ├── render-image.html │ │ └── render-link.html │ ├── baseof.html │ ├── list.html │ └── single.html ├── blog │ ├── list.html │ └── single.html ├── index.html ├── partials │ ├── button.html │ ├── card.html │ ├── contact_icons.html │ ├── dev │ │ ├── parameters.html │ │ └── size-indicator.html │ ├── footer.html │ ├── head │ │ ├── css.html │ │ ├── js.html │ │ ├── metadata.html │ │ ├── open_graph.html │ │ └── twitter.html │ ├── header.html │ ├── icon.html │ ├── taxonomy_list.html │ └── widgets │ │ ├── bars.html │ │ ├── blank.html │ │ ├── contact_form.html │ │ ├── hero.html │ │ ├── pages.html │ │ └── timeline.html └── taxonomy │ └── list.html ├── netlify.toml ├── package.json ├── static ├── favicon.ico ├── favicon.png ├── fonts │ ├── charter │ │ ├── bold.woff │ │ ├── bold_italic.woff │ │ ├── italic.woff │ │ ├── license.txt │ │ └── regular.woff │ └── spectral │ │ ├── OFL.txt │ │ ├── bold.woff2 │ │ ├── bold_italic.woff2 │ │ ├── extra_bold.woff2 │ │ ├── extra_bold_italic.woff2 │ │ ├── extra_light.woff2 │ │ ├── extra_light_italic.woff2 │ │ ├── italic.woff2 │ │ ├── light.woff2 │ │ ├── light_italic.woff2 │ │ ├── medium.woff2 │ │ ├── medium_italic.woff2 │ │ ├── regular.woff2 │ │ └── semi_bold_italic.woff2 └── icons │ ├── email.svg │ ├── facebook.svg │ ├── github.svg │ ├── medium.svg │ ├── stack-overflow.svg │ ├── tag.svg │ ├── top_arrow.svg │ └── twitter.svg └── theme.toml /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.github/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/.github/banner.jpg -------------------------------------------------------------------------------- /.github/bmc-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/.github/bmc-button.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /assets/config/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/assets/config/generator.js -------------------------------------------------------------------------------- /assets/config/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/assets/config/postcss.config.js -------------------------------------------------------------------------------- /assets/config/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/assets/config/tailwind.config.js -------------------------------------------------------------------------------- /assets/css/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/assets/css/syntax.css -------------------------------------------------------------------------------- /assets/js/dark-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/assets/js/dark-mode.js -------------------------------------------------------------------------------- /assets/sass/_blend.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/assets/sass/_blend.sass -------------------------------------------------------------------------------- /assets/sass/_position.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/assets/sass/_position.sass -------------------------------------------------------------------------------- /assets/sass/_tailwindcss.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/assets/sass/_tailwindcss.sass -------------------------------------------------------------------------------- /assets/sass/_text.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/assets/sass/_text.sass -------------------------------------------------------------------------------- /assets/sass/_theme.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/assets/sass/_theme.sass -------------------------------------------------------------------------------- /assets/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/assets/sass/_variables.scss -------------------------------------------------------------------------------- /assets/sass/fonts/_all.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/assets/sass/fonts/_all.sass -------------------------------------------------------------------------------- /assets/sass/fonts/charter.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/assets/sass/fonts/charter.sass -------------------------------------------------------------------------------- /assets/sass/fonts/spectral.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/assets/sass/fonts/spectral.sass -------------------------------------------------------------------------------- /assets/sass/styles.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/assets/sass/styles.sass -------------------------------------------------------------------------------- /exampleSite/.gitignore: -------------------------------------------------------------------------------- 1 | .hugo_build.lock 2 | resources/ -------------------------------------------------------------------------------- /exampleSite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/LICENSE -------------------------------------------------------------------------------- /exampleSite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/README.md -------------------------------------------------------------------------------- /exampleSite/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/archetypes/default.md -------------------------------------------------------------------------------- /exampleSite/assets/js/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/assets/js/console.js -------------------------------------------------------------------------------- /exampleSite/assets/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/assets/style/style.css -------------------------------------------------------------------------------- /exampleSite/assets/style/theme.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/assets/style/theme.sass -------------------------------------------------------------------------------- /exampleSite/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/config.toml -------------------------------------------------------------------------------- /exampleSite/content/en/about/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/content/en/about/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/blog/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/content/en/blog/_index.md -------------------------------------------------------------------------------- /exampleSite/content/en/blog/krabby_patty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/content/en/blog/krabby_patty.md -------------------------------------------------------------------------------- /exampleSite/content/en/home/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/content/en/home/contact.md -------------------------------------------------------------------------------- /exampleSite/content/en/home/experience.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/content/en/home/experience.md -------------------------------------------------------------------------------- /exampleSite/content/en/home/hero.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/content/en/home/hero.md -------------------------------------------------------------------------------- /exampleSite/content/en/home/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/content/en/home/index.md -------------------------------------------------------------------------------- /exampleSite/content/en/home/posts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/content/en/home/posts.md -------------------------------------------------------------------------------- /exampleSite/content/en/home/skills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/content/en/home/skills.md -------------------------------------------------------------------------------- /exampleSite/content/fr/about/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/content/fr/about/index.md -------------------------------------------------------------------------------- /exampleSite/content/fr/blog/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/content/fr/blog/_index.md -------------------------------------------------------------------------------- /exampleSite/content/fr/blog/krabby_patty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/content/fr/blog/krabby_patty.md -------------------------------------------------------------------------------- /exampleSite/content/fr/home/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/content/fr/home/contact.md -------------------------------------------------------------------------------- /exampleSite/content/fr/home/experience.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/content/fr/home/experience.md -------------------------------------------------------------------------------- /exampleSite/content/fr/home/hero.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/content/fr/home/hero.md -------------------------------------------------------------------------------- /exampleSite/content/fr/home/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/content/fr/home/index.md -------------------------------------------------------------------------------- /exampleSite/content/fr/home/posts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/content/fr/home/posts.md -------------------------------------------------------------------------------- /exampleSite/content/fr/home/skills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/content/fr/home/skills.md -------------------------------------------------------------------------------- /exampleSite/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/netlify.toml -------------------------------------------------------------------------------- /exampleSite/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/package-lock.json -------------------------------------------------------------------------------- /exampleSite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/package.json -------------------------------------------------------------------------------- /exampleSite/resources/_gen/assets/sass/sass/styles.sass_d536e9f722854ec696a0bd459525def6.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/resources/_gen/assets/sass/sass/styles.sass_d536e9f722854ec696a0bd459525def6.content -------------------------------------------------------------------------------- /exampleSite/resources/_gen/assets/sass/sass/styles.sass_d536e9f722854ec696a0bd459525def6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/resources/_gen/assets/sass/sass/styles.sass_d536e9f722854ec696a0bd459525def6.json -------------------------------------------------------------------------------- /exampleSite/resources/_gen/assets/sass/style/theme.sass_cbdc4778711e418b9c89192b90b1ca19.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/resources/_gen/assets/sass/style/theme.sass_cbdc4778711e418b9c89192b90b1ca19.content -------------------------------------------------------------------------------- /exampleSite/resources/_gen/assets/sass/style/theme.sass_cbdc4778711e418b9c89192b90b1ca19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/resources/_gen/assets/sass/style/theme.sass_cbdc4778711e418b9c89192b90b1ca19.json -------------------------------------------------------------------------------- /exampleSite/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/setup.sh -------------------------------------------------------------------------------- /exampleSite/static/icons/chicken.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/static/icons/chicken.svg -------------------------------------------------------------------------------- /exampleSite/static/icons/heat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/static/icons/heat.svg -------------------------------------------------------------------------------- /exampleSite/static/icons/precision.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/static/icons/precision.svg -------------------------------------------------------------------------------- /exampleSite/static/icons/presentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/static/icons/presentation.svg -------------------------------------------------------------------------------- /exampleSite/static/img/default_banner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/static/img/default_banner.webp -------------------------------------------------------------------------------- /exampleSite/static/img/krabby_patty.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/static/img/krabby_patty.webp -------------------------------------------------------------------------------- /exampleSite/static/img/krusty_krab.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/static/img/krusty_krab.webp -------------------------------------------------------------------------------- /exampleSite/static/img/portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/static/img/portrait.jpg -------------------------------------------------------------------------------- /exampleSite/static/img/portrait.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/static/img/portrait.webp -------------------------------------------------------------------------------- /exampleSite/static/img/spongebob-krusty-cook.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/static/img/spongebob-krusty-cook.webp -------------------------------------------------------------------------------- /exampleSite/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/exampleSite/update.sh -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/flake.nix -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/negrel/hugo-theme-pico 2 | 3 | go 1.19 4 | -------------------------------------------------------------------------------- /i18n/de.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/i18n/de.toml -------------------------------------------------------------------------------- /i18n/en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/i18n/en.toml -------------------------------------------------------------------------------- /i18n/es.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/i18n/es.toml -------------------------------------------------------------------------------- /i18n/fr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/i18n/fr.toml -------------------------------------------------------------------------------- /i18n/it.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/i18n/it.toml -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/screenshot_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/images/screenshot_dark.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/images/tn.png -------------------------------------------------------------------------------- /images/tn_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/images/tn_dark.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/_default/_markup/render-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/_default/_markup/render-image.html -------------------------------------------------------------------------------- /layouts/_default/_markup/render-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/_default/_markup/render-link.html -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/blog/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/blog/list.html -------------------------------------------------------------------------------- /layouts/blog/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/blog/single.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/partials/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/partials/button.html -------------------------------------------------------------------------------- /layouts/partials/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/partials/card.html -------------------------------------------------------------------------------- /layouts/partials/contact_icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/partials/contact_icons.html -------------------------------------------------------------------------------- /layouts/partials/dev/parameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/partials/dev/parameters.html -------------------------------------------------------------------------------- /layouts/partials/dev/size-indicator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/partials/dev/size-indicator.html -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/head/css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/partials/head/css.html -------------------------------------------------------------------------------- /layouts/partials/head/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/partials/head/js.html -------------------------------------------------------------------------------- /layouts/partials/head/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/partials/head/metadata.html -------------------------------------------------------------------------------- /layouts/partials/head/open_graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/partials/head/open_graph.html -------------------------------------------------------------------------------- /layouts/partials/head/twitter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/partials/head/twitter.html -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/partials/header.html -------------------------------------------------------------------------------- /layouts/partials/icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/partials/icon.html -------------------------------------------------------------------------------- /layouts/partials/taxonomy_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/partials/taxonomy_list.html -------------------------------------------------------------------------------- /layouts/partials/widgets/bars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/partials/widgets/bars.html -------------------------------------------------------------------------------- /layouts/partials/widgets/blank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/partials/widgets/contact_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/partials/widgets/contact_form.html -------------------------------------------------------------------------------- /layouts/partials/widgets/hero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/partials/widgets/hero.html -------------------------------------------------------------------------------- /layouts/partials/widgets/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/partials/widgets/pages.html -------------------------------------------------------------------------------- /layouts/partials/widgets/timeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/partials/widgets/timeline.html -------------------------------------------------------------------------------- /layouts/taxonomy/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/layouts/taxonomy/list.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/package.json -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/fonts/charter/bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/fonts/charter/bold.woff -------------------------------------------------------------------------------- /static/fonts/charter/bold_italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/fonts/charter/bold_italic.woff -------------------------------------------------------------------------------- /static/fonts/charter/italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/fonts/charter/italic.woff -------------------------------------------------------------------------------- /static/fonts/charter/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/fonts/charter/license.txt -------------------------------------------------------------------------------- /static/fonts/charter/regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/fonts/charter/regular.woff -------------------------------------------------------------------------------- /static/fonts/spectral/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/fonts/spectral/OFL.txt -------------------------------------------------------------------------------- /static/fonts/spectral/bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/fonts/spectral/bold.woff2 -------------------------------------------------------------------------------- /static/fonts/spectral/bold_italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/fonts/spectral/bold_italic.woff2 -------------------------------------------------------------------------------- /static/fonts/spectral/extra_bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/fonts/spectral/extra_bold.woff2 -------------------------------------------------------------------------------- /static/fonts/spectral/extra_bold_italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/fonts/spectral/extra_bold_italic.woff2 -------------------------------------------------------------------------------- /static/fonts/spectral/extra_light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/fonts/spectral/extra_light.woff2 -------------------------------------------------------------------------------- /static/fonts/spectral/extra_light_italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/fonts/spectral/extra_light_italic.woff2 -------------------------------------------------------------------------------- /static/fonts/spectral/italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/fonts/spectral/italic.woff2 -------------------------------------------------------------------------------- /static/fonts/spectral/light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/fonts/spectral/light.woff2 -------------------------------------------------------------------------------- /static/fonts/spectral/light_italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/fonts/spectral/light_italic.woff2 -------------------------------------------------------------------------------- /static/fonts/spectral/medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/fonts/spectral/medium.woff2 -------------------------------------------------------------------------------- /static/fonts/spectral/medium_italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/fonts/spectral/medium_italic.woff2 -------------------------------------------------------------------------------- /static/fonts/spectral/regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/fonts/spectral/regular.woff2 -------------------------------------------------------------------------------- /static/fonts/spectral/semi_bold_italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/fonts/spectral/semi_bold_italic.woff2 -------------------------------------------------------------------------------- /static/icons/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/icons/email.svg -------------------------------------------------------------------------------- /static/icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/icons/facebook.svg -------------------------------------------------------------------------------- /static/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/icons/github.svg -------------------------------------------------------------------------------- /static/icons/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/icons/medium.svg -------------------------------------------------------------------------------- /static/icons/stack-overflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/icons/stack-overflow.svg -------------------------------------------------------------------------------- /static/icons/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/icons/tag.svg -------------------------------------------------------------------------------- /static/icons/top_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/icons/top_arrow.svg -------------------------------------------------------------------------------- /static/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/static/icons/twitter.svg -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negrel/hugo-theme-pico/HEAD/theme.toml --------------------------------------------------------------------------------