├── .aspell.en.pws ├── .gitignore ├── .gitmodules ├── .travis.yml ├── README.md ├── bin └── check_spelling.sh ├── config.toml ├── content ├── about │ └── index.md ├── blog │ ├── back-to-life-oct-2021.md │ ├── struggles-of-postnatal-and-starting-montessori.md │ └── teach-more-to-our-students-than-tech-through-oss-communities.md └── contact │ └── index.md ├── resources └── _gen │ └── assets │ └── scss │ └── scss │ ├── main.scss_f300667da4f5b5f84e1a9e0702b2fdde.content │ └── main.scss_f300667da4f5b5f84e1a9e0702b2fdde.json ├── static ├── css │ └── add-on.css ├── img │ ├── 2019 │ │ └── 03 │ │ │ ├── pic01.jpg │ │ │ ├── pic02.jpg │ │ │ └── pic03.jpg │ ├── 2020 │ │ └── 08 │ │ │ └── kids_computers.jpg │ ├── 2021 │ │ ├── 01FJHWE0HJRTBHM3021G3TPB6H.jpg │ │ ├── 01FJHWFWVHT1PDT6VJP55SW6WY.jpg │ │ ├── 01FJHWGTAJ92019TZ3QHTGB2TE.jpg │ │ └── 02 │ │ │ ├── PXL_173821101.jpg │ │ │ ├── PXL_201143023.jpg │ │ │ ├── PXL_214242035.jpg │ │ │ └── PXL_221143137.jpg │ └── main │ │ └── profile.jpg └── js │ └── add-on.js ├── staticman.yml └── themes ├── casper-custom ├── .gitignore ├── LICENSE.md ├── README.md ├── archetypes │ └── default.md ├── data │ └── authors │ │ └── example.yml ├── images │ ├── logo.png │ ├── screen.png │ ├── screenshot.png │ └── tn.png ├── layouts │ ├── 404.html │ ├── _default │ │ ├── list.html │ │ └── single.html │ ├── page │ │ ├── cover.html │ │ ├── index.html │ │ ├── list.html │ │ └── single.html │ └── partials │ │ ├── author.html │ │ ├── disqus.html │ │ ├── footer.html │ │ ├── header.html │ │ ├── home-content.html │ │ ├── li.html │ │ ├── navigation.html │ │ ├── pagination.html │ │ ├── semantic.html │ │ ├── share.html │ │ ├── social.html │ │ ├── suggestions.html │ │ └── twitter_card.html ├── static │ ├── css │ │ ├── nav.css │ │ └── screen.css │ ├── fonts │ │ ├── Genericons │ │ │ ├── Genericons.eot │ │ │ ├── Genericons.svg │ │ │ ├── Genericons.ttf │ │ │ ├── Genericons.woff │ │ │ ├── example.html │ │ │ └── genericons.css │ │ ├── Inconsolata │ │ │ ├── Inconsolata-Regular.ttf │ │ │ └── OFL.txt │ │ ├── Merriweather │ │ │ ├── Merriweather-Bold.ttf │ │ │ ├── Merriweather-BoldItalic.ttf │ │ │ ├── Merriweather-Light.ttf │ │ │ ├── Merriweather-LightItalic.ttf │ │ │ └── OFL.txt │ │ └── Open_Sans │ │ │ ├── LICENSE.txt │ │ │ ├── OpenSans-Bold.ttf │ │ │ └── OpenSans-Regular.ttf │ ├── images │ │ ├── keybase.svg │ │ └── stackoverflow.svg │ └── js │ │ ├── index.js │ │ ├── jquery.fitvids.js │ │ └── jquery.js └── theme.toml └── hugo-future-imperfect-slim-custom ├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── archetypes └── default.md ├── assets ├── assets.json ├── css │ ├── academicons.css │ ├── dark.css │ ├── default.css │ ├── fancybox.css │ ├── fontawesome.css │ ├── fonts.css │ ├── normalize.css │ └── rtl.css ├── js │ ├── fancybox.js │ ├── highlight.js │ ├── jquery-3.5.1.js │ ├── lunr.js │ ├── main.js │ ├── staticman.js │ └── util.js └── scss │ └── main.scss ├── exampleSite ├── config.toml ├── content │ ├── about │ │ ├── index.fr.md │ │ ├── index.md │ │ ├── index.pl.md │ │ └── index.pt.md │ ├── blog │ │ ├── emoji-support.fr.md │ │ ├── emoji-support.md │ │ ├── markdown-syntax.fr.md │ │ ├── markdown-syntax.md │ │ ├── placeholder-text.md │ │ ├── rich-content.fr.md │ │ └── rich-content.md │ └── contact │ │ ├── index.de.md │ │ ├── index.es.md │ │ ├── index.md │ │ └── index.zh-cn.md ├── data │ └── comments │ │ └── 6354f801456983b22c4b91ce42adfca7 │ │ ├── 7f97ca70-c476-11e9-999e-498e0902dd73.json │ │ └── a69c31b0-c476-11e9-999e-498e0902dd73.json ├── resources │ └── _gen │ │ └── assets │ │ └── scss │ │ └── scss │ │ ├── main.scss_f300667da4f5b5f84e1a9e0702b2fdde.content │ │ └── main.scss_f300667da4f5b5f84e1a9e0702b2fdde.json ├── static │ ├── css │ │ └── add-on.css │ ├── img │ │ ├── 2019 │ │ │ └── 03 │ │ │ │ ├── pic01.jpg │ │ │ │ ├── pic02.jpg │ │ │ │ └── pic03.jpg │ │ └── main │ │ │ └── logo.jpg │ └── js │ │ └── add-on.js └── staticman.yml ├── favicon └── ieconfig.xml ├── i18n ├── de.toml ├── en.toml ├── es.toml ├── fr.toml ├── id.toml ├── ja.toml ├── ko.toml ├── nl.toml ├── pl.toml ├── pt.toml ├── tr.toml ├── zh-CN.toml └── zh-TW.toml ├── images ├── screenshot.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── about.html │ ├── baseof.html │ ├── comments.html │ ├── contact.html │ ├── content-list.html │ ├── date.html │ ├── date.nl.html │ ├── featured.html │ ├── header.html │ ├── index.json.json │ ├── list.html │ ├── single.html │ ├── stats.html │ └── terms.html ├── partials │ ├── head.html │ ├── language-menu.html │ ├── meta.html │ ├── rss-icon.html │ ├── scripts.html │ ├── share-buttons.html │ ├── site-footer.html │ ├── site-header.html │ ├── site-intro.html │ ├── site-sidebar.html │ ├── socnet-icon.html │ ├── theme-message.md │ └── theme-notification.html └── shortcodes │ └── fancybox.html ├── static ├── css │ ├── 404.css │ └── normalize.css └── webfonts │ ├── academicons.eot │ ├── academicons.svg │ ├── academicons.ttf │ ├── academicons.woff │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 └── theme.toml /.aspell.en.pws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/.aspell.en.pws -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | backup 2 | public/* 3 | themes/casper/tmp 4 | .DS_Store 5 | .idea -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Blog 2 | testing grounds for my blog 3 | -------------------------------------------------------------------------------- /bin/check_spelling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/bin/check_spelling.sh -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/config.toml -------------------------------------------------------------------------------- /content/about/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/content/about/index.md -------------------------------------------------------------------------------- /content/blog/back-to-life-oct-2021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/content/blog/back-to-life-oct-2021.md -------------------------------------------------------------------------------- /content/blog/struggles-of-postnatal-and-starting-montessori.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/content/blog/struggles-of-postnatal-and-starting-montessori.md -------------------------------------------------------------------------------- /content/blog/teach-more-to-our-students-than-tech-through-oss-communities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/content/blog/teach-more-to-our-students-than-tech-through-oss-communities.md -------------------------------------------------------------------------------- /content/contact/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/content/contact/index.md -------------------------------------------------------------------------------- /resources/_gen/assets/scss/scss/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/resources/_gen/assets/scss/scss/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.content -------------------------------------------------------------------------------- /resources/_gen/assets/scss/scss/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/resources/_gen/assets/scss/scss/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.json -------------------------------------------------------------------------------- /static/css/add-on.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/static/css/add-on.css -------------------------------------------------------------------------------- /static/img/2019/03/pic01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/static/img/2019/03/pic01.jpg -------------------------------------------------------------------------------- /static/img/2019/03/pic02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/static/img/2019/03/pic02.jpg -------------------------------------------------------------------------------- /static/img/2019/03/pic03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/static/img/2019/03/pic03.jpg -------------------------------------------------------------------------------- /static/img/2020/08/kids_computers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/static/img/2020/08/kids_computers.jpg -------------------------------------------------------------------------------- /static/img/2021/01FJHWE0HJRTBHM3021G3TPB6H.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/static/img/2021/01FJHWE0HJRTBHM3021G3TPB6H.jpg -------------------------------------------------------------------------------- /static/img/2021/01FJHWFWVHT1PDT6VJP55SW6WY.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/static/img/2021/01FJHWFWVHT1PDT6VJP55SW6WY.jpg -------------------------------------------------------------------------------- /static/img/2021/01FJHWGTAJ92019TZ3QHTGB2TE.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/static/img/2021/01FJHWGTAJ92019TZ3QHTGB2TE.jpg -------------------------------------------------------------------------------- /static/img/2021/02/PXL_173821101.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/static/img/2021/02/PXL_173821101.jpg -------------------------------------------------------------------------------- /static/img/2021/02/PXL_201143023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/static/img/2021/02/PXL_201143023.jpg -------------------------------------------------------------------------------- /static/img/2021/02/PXL_214242035.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/static/img/2021/02/PXL_214242035.jpg -------------------------------------------------------------------------------- /static/img/2021/02/PXL_221143137.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/static/img/2021/02/PXL_221143137.jpg -------------------------------------------------------------------------------- /static/img/main/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/static/img/main/profile.jpg -------------------------------------------------------------------------------- /static/js/add-on.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/static/js/add-on.js -------------------------------------------------------------------------------- /staticman.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/staticman.yml -------------------------------------------------------------------------------- /themes/casper-custom/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | .DS_Store -------------------------------------------------------------------------------- /themes/casper-custom/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/LICENSE.md -------------------------------------------------------------------------------- /themes/casper-custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/README.md -------------------------------------------------------------------------------- /themes/casper-custom/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/archetypes/default.md -------------------------------------------------------------------------------- /themes/casper-custom/data/authors/example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/data/authors/example.yml -------------------------------------------------------------------------------- /themes/casper-custom/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/images/logo.png -------------------------------------------------------------------------------- /themes/casper-custom/images/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/images/screen.png -------------------------------------------------------------------------------- /themes/casper-custom/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/images/screenshot.png -------------------------------------------------------------------------------- /themes/casper-custom/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/images/tn.png -------------------------------------------------------------------------------- /themes/casper-custom/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/layouts/404.html -------------------------------------------------------------------------------- /themes/casper-custom/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/layouts/_default/list.html -------------------------------------------------------------------------------- /themes/casper-custom/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/layouts/_default/single.html -------------------------------------------------------------------------------- /themes/casper-custom/layouts/page/cover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/layouts/page/cover.html -------------------------------------------------------------------------------- /themes/casper-custom/layouts/page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/layouts/page/index.html -------------------------------------------------------------------------------- /themes/casper-custom/layouts/page/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/layouts/page/list.html -------------------------------------------------------------------------------- /themes/casper-custom/layouts/page/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/layouts/page/single.html -------------------------------------------------------------------------------- /themes/casper-custom/layouts/partials/author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/layouts/partials/author.html -------------------------------------------------------------------------------- /themes/casper-custom/layouts/partials/disqus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/layouts/partials/disqus.html -------------------------------------------------------------------------------- /themes/casper-custom/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/layouts/partials/footer.html -------------------------------------------------------------------------------- /themes/casper-custom/layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/layouts/partials/header.html -------------------------------------------------------------------------------- /themes/casper-custom/layouts/partials/home-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/layouts/partials/home-content.html -------------------------------------------------------------------------------- /themes/casper-custom/layouts/partials/li.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/layouts/partials/li.html -------------------------------------------------------------------------------- /themes/casper-custom/layouts/partials/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/layouts/partials/navigation.html -------------------------------------------------------------------------------- /themes/casper-custom/layouts/partials/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/layouts/partials/pagination.html -------------------------------------------------------------------------------- /themes/casper-custom/layouts/partials/semantic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/layouts/partials/semantic.html -------------------------------------------------------------------------------- /themes/casper-custom/layouts/partials/share.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/layouts/partials/share.html -------------------------------------------------------------------------------- /themes/casper-custom/layouts/partials/social.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/layouts/partials/social.html -------------------------------------------------------------------------------- /themes/casper-custom/layouts/partials/suggestions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/layouts/partials/suggestions.html -------------------------------------------------------------------------------- /themes/casper-custom/layouts/partials/twitter_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/layouts/partials/twitter_card.html -------------------------------------------------------------------------------- /themes/casper-custom/static/css/nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/css/nav.css -------------------------------------------------------------------------------- /themes/casper-custom/static/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/css/screen.css -------------------------------------------------------------------------------- /themes/casper-custom/static/fonts/Genericons/Genericons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/fonts/Genericons/Genericons.eot -------------------------------------------------------------------------------- /themes/casper-custom/static/fonts/Genericons/Genericons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/fonts/Genericons/Genericons.svg -------------------------------------------------------------------------------- /themes/casper-custom/static/fonts/Genericons/Genericons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/fonts/Genericons/Genericons.ttf -------------------------------------------------------------------------------- /themes/casper-custom/static/fonts/Genericons/Genericons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/fonts/Genericons/Genericons.woff -------------------------------------------------------------------------------- /themes/casper-custom/static/fonts/Genericons/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/fonts/Genericons/example.html -------------------------------------------------------------------------------- /themes/casper-custom/static/fonts/Genericons/genericons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/fonts/Genericons/genericons.css -------------------------------------------------------------------------------- /themes/casper-custom/static/fonts/Inconsolata/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/fonts/Inconsolata/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /themes/casper-custom/static/fonts/Inconsolata/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/fonts/Inconsolata/OFL.txt -------------------------------------------------------------------------------- /themes/casper-custom/static/fonts/Merriweather/Merriweather-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/fonts/Merriweather/Merriweather-Bold.ttf -------------------------------------------------------------------------------- /themes/casper-custom/static/fonts/Merriweather/Merriweather-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/fonts/Merriweather/Merriweather-BoldItalic.ttf -------------------------------------------------------------------------------- /themes/casper-custom/static/fonts/Merriweather/Merriweather-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/fonts/Merriweather/Merriweather-Light.ttf -------------------------------------------------------------------------------- /themes/casper-custom/static/fonts/Merriweather/Merriweather-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/fonts/Merriweather/Merriweather-LightItalic.ttf -------------------------------------------------------------------------------- /themes/casper-custom/static/fonts/Merriweather/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/fonts/Merriweather/OFL.txt -------------------------------------------------------------------------------- /themes/casper-custom/static/fonts/Open_Sans/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/fonts/Open_Sans/LICENSE.txt -------------------------------------------------------------------------------- /themes/casper-custom/static/fonts/Open_Sans/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/fonts/Open_Sans/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /themes/casper-custom/static/fonts/Open_Sans/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/fonts/Open_Sans/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /themes/casper-custom/static/images/keybase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/images/keybase.svg -------------------------------------------------------------------------------- /themes/casper-custom/static/images/stackoverflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/images/stackoverflow.svg -------------------------------------------------------------------------------- /themes/casper-custom/static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/js/index.js -------------------------------------------------------------------------------- /themes/casper-custom/static/js/jquery.fitvids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/js/jquery.fitvids.js -------------------------------------------------------------------------------- /themes/casper-custom/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/static/js/jquery.js -------------------------------------------------------------------------------- /themes/casper-custom/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/casper-custom/theme.toml -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/.gitattributes -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/.gitignore: -------------------------------------------------------------------------------- 1 | exampleSite/public 2 | -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/LICENSE.md -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/README.md -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/archetypes/default.md -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/assets/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/assets/assets.json -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/assets/css/academicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/assets/css/academicons.css -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/assets/css/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/assets/css/dark.css -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/assets/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/assets/css/default.css -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/assets/css/fancybox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/assets/css/fancybox.css -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/assets/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/assets/css/fontawesome.css -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/assets/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/assets/css/fonts.css -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/assets/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/assets/css/normalize.css -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/assets/css/rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/assets/css/rtl.css -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/assets/js/fancybox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/assets/js/fancybox.js -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/assets/js/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/assets/js/highlight.js -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/assets/js/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/assets/js/jquery-3.5.1.js -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/assets/js/lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/assets/js/lunr.js -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/assets/js/main.js -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/assets/js/staticman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/assets/js/staticman.js -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/assets/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/assets/js/util.js -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/assets/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/assets/scss/main.scss -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/config.toml -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/content/about/index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/content/about/index.fr.md -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/content/about/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/content/about/index.md -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/content/about/index.pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/content/about/index.pl.md -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/content/about/index.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/content/about/index.pt.md -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/content/blog/emoji-support.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/content/blog/emoji-support.fr.md -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/content/blog/emoji-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/content/blog/emoji-support.md -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/content/blog/markdown-syntax.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/content/blog/markdown-syntax.fr.md -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/content/blog/markdown-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/content/blog/markdown-syntax.md -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/content/blog/placeholder-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/content/blog/placeholder-text.md -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/content/blog/rich-content.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/content/blog/rich-content.fr.md -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/content/blog/rich-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/content/blog/rich-content.md -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/content/contact/index.de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/content/contact/index.de.md -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/content/contact/index.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/content/contact/index.es.md -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/content/contact/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/content/contact/index.md -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/content/contact/index.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/content/contact/index.zh-cn.md -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/data/comments/6354f801456983b22c4b91ce42adfca7/7f97ca70-c476-11e9-999e-498e0902dd73.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/data/comments/6354f801456983b22c4b91ce42adfca7/7f97ca70-c476-11e9-999e-498e0902dd73.json -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/data/comments/6354f801456983b22c4b91ce42adfca7/a69c31b0-c476-11e9-999e-498e0902dd73.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/data/comments/6354f801456983b22c4b91ce42adfca7/a69c31b0-c476-11e9-999e-498e0902dd73.json -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/resources/_gen/assets/scss/scss/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/resources/_gen/assets/scss/scss/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.content -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/resources/_gen/assets/scss/scss/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/resources/_gen/assets/scss/scss/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.json -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/static/css/add-on.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/static/css/add-on.css -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/static/img/2019/03/pic01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/static/img/2019/03/pic01.jpg -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/static/img/2019/03/pic02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/static/img/2019/03/pic02.jpg -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/static/img/2019/03/pic03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/static/img/2019/03/pic03.jpg -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/static/img/main/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/static/img/main/logo.jpg -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/static/js/add-on.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/static/js/add-on.js -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/exampleSite/staticman.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/exampleSite/staticman.yml -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/favicon/ieconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/favicon/ieconfig.xml -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/i18n/de.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/i18n/de.toml -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/i18n/en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/i18n/en.toml -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/i18n/es.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/i18n/es.toml -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/i18n/fr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/i18n/fr.toml -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/i18n/id.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/i18n/id.toml -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/i18n/ja.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/i18n/ja.toml -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/i18n/ko.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/i18n/ko.toml -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/i18n/nl.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/i18n/nl.toml -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/i18n/pl.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/i18n/pl.toml -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/i18n/pt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/i18n/pt.toml -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/i18n/tr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/i18n/tr.toml -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/i18n/zh-CN.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/i18n/zh-CN.toml -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/i18n/zh-TW.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/i18n/zh-TW.toml -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/images/screenshot.png -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/images/tn.png -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/404.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/_default/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/_default/about.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/_default/baseof.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/_default/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/_default/comments.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/_default/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/_default/contact.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/_default/content-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/_default/content-list.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/_default/date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/_default/date.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/_default/date.nl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/_default/date.nl.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/_default/featured.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/_default/featured.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/_default/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/_default/header.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/_default/index.json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/_default/index.json.json -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/_default/list.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/_default/single.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/_default/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/_default/stats.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/_default/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/_default/terms.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/partials/head.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/partials/language-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/partials/language-menu.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/partials/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/partials/meta.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/partials/rss-icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/partials/rss-icon.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/partials/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/partials/scripts.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/partials/share-buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/partials/share-buttons.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/partials/site-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/partials/site-footer.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/partials/site-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/partials/site-header.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/partials/site-intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/partials/site-intro.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/partials/site-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/partials/site-sidebar.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/partials/socnet-icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/partials/socnet-icon.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/partials/theme-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/partials/theme-message.md -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/partials/theme-notification.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/layouts/shortcodes/fancybox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/layouts/shortcodes/fancybox.html -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/static/css/404.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/static/css/404.css -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/static/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/static/css/normalize.css -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/static/webfonts/academicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/static/webfonts/academicons.eot -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/static/webfonts/academicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/static/webfonts/academicons.svg -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/static/webfonts/academicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/static/webfonts/academicons.ttf -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/static/webfonts/academicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/static/webfonts/academicons.woff -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /themes/hugo-future-imperfect-slim-custom/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samus-aran/blog-resources/HEAD/themes/hugo-future-imperfect-slim-custom/theme.toml --------------------------------------------------------------------------------