├── layouts ├── partials │ ├── foot_custom.html │ ├── head_custom.html │ ├── footer.html │ └── header.html ├── robots.txt ├── 404.html └── _default │ ├── terms.html │ ├── list.html │ └── single.html ├── .gitignore ├── exampleSite ├── static │ ├── css │ │ └── theme-override.css │ └── images │ │ ├── tn.png │ │ ├── favicon.ico │ │ ├── grayf0x.jpg │ │ ├── screenshot.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── partywizard.gif │ │ ├── apple-touch-icon.png │ │ ├── android-chrome-192x192.png │ │ └── android-chrome-512x512.png ├── content │ ├── post │ │ ├── 2012-01-23-juicy-code.md │ │ ├── 2012-04-23-hacker-with-horn.md │ │ ├── 2015-07-23-command-line-awesomeness.md │ │ └── 2018-08-30-markdown-guide.md │ └── _index.md └── hugo.toml ├── images ├── tn.png ├── dark.png ├── light.png └── screenshot.png ├── archetypes └── default.md ├── theme.toml ├── static └── css │ ├── fonts.css │ └── style.css ├── LICENSE.md └── README.md /layouts/partials/foot_custom.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/partials/head_custom.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.swp 3 | -------------------------------------------------------------------------------- /exampleSite/static/css/theme-override.css: -------------------------------------------------------------------------------- 1 | footer { font-size: 90%; } 2 | -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodroot/hugo-classic/HEAD/images/tn.png -------------------------------------------------------------------------------- /images/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodroot/hugo-classic/HEAD/images/dark.png -------------------------------------------------------------------------------- /layouts/robots.txt: -------------------------------------------------------------------------------- 1 | # robots.txt 2 | User-agent: * 3 | Disallow: 4 | Disallow: /cgi-bin/ -------------------------------------------------------------------------------- /images/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodroot/hugo-classic/HEAD/images/light.png -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '' 3 | date: '' 4 | description: '' 5 | author: '' 6 | --- 7 | -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodroot/hugo-classic/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /exampleSite/static/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodroot/hugo-classic/HEAD/exampleSite/static/images/tn.png -------------------------------------------------------------------------------- /exampleSite/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodroot/hugo-classic/HEAD/exampleSite/static/images/favicon.ico -------------------------------------------------------------------------------- /exampleSite/static/images/grayf0x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodroot/hugo-classic/HEAD/exampleSite/static/images/grayf0x.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodroot/hugo-classic/HEAD/exampleSite/static/images/screenshot.png -------------------------------------------------------------------------------- /exampleSite/static/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodroot/hugo-classic/HEAD/exampleSite/static/images/favicon-16x16.png -------------------------------------------------------------------------------- /exampleSite/static/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodroot/hugo-classic/HEAD/exampleSite/static/images/favicon-32x32.png -------------------------------------------------------------------------------- /exampleSite/static/images/partywizard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodroot/hugo-classic/HEAD/exampleSite/static/images/partywizard.gif -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- 1 | {{ partial "header.html" . }} 2 | 3 | 404 - You once were found. But now you're lost. 4 | 5 | {{ partial "footer.html" . }} 6 | -------------------------------------------------------------------------------- /exampleSite/static/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodroot/hugo-classic/HEAD/exampleSite/static/images/apple-touch-icon.png -------------------------------------------------------------------------------- /exampleSite/static/images/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodroot/hugo-classic/HEAD/exampleSite/static/images/android-chrome-192x192.png -------------------------------------------------------------------------------- /exampleSite/static/images/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodroot/hugo-classic/HEAD/exampleSite/static/images/android-chrome-512x512.png -------------------------------------------------------------------------------- /layouts/_default/terms.html: -------------------------------------------------------------------------------- 1 | {{ partial "header.html" . }} 2 | 3 |
9 |
10 | ## Welcome, friend
11 |
12 | ### :purple_heart: :earth_africa: :purple_heart:
13 |
14 | Born in [The Abyss](https://en.wikipedia.org/wiki/Edmonton), **Grayfox** - also known as Zerkle Snorp - has spent over two decades fiddling with things on the Internet. Today he does nothing, so stop asking.
15 |
16 | Their greatest joys are darkness and its quietudes.
17 |
18 |
19 |
20 | ---
21 |
22 | ## Musings
--------------------------------------------------------------------------------
/static/css/fonts.css:
--------------------------------------------------------------------------------
1 | @import url('https://rsms.me/inter/inter.css');
2 | html { font-family:
3 | 'Inter',
4 | sans-serif,
5 | 'Apple Color Emoji',
6 | 'Segoe UI Emoji',
7 | 'Segoe UI Symbol';
8 | }
9 | @supports (font-variation-settings: normal) {
10 | html { font-family:
11 | 'Inter var',
12 | sans-serif,
13 | 'Apple Color Emoji',
14 | 'Segoe UI Emoji',
15 | 'Segoe UI Symbol';
16 | }
17 | }
18 |
19 | code {
20 | font-family:
21 | -apple-system,
22 | BlinkMacSystemFont,
23 | "Segoe UI",
24 | Helvetica,
25 | Arial,
26 | sans-serif,
27 | "Apple Color Emoji",
28 | "Segoe UI Emoji",
29 | "Segoe UI Symbol";
30 | font-size: 85%;
31 | }
32 |
--------------------------------------------------------------------------------
/layouts/_default/single.html:
--------------------------------------------------------------------------------
1 | {{ partial "header.html" . }}
2 |
14 |
15 | {{ if .Params.toc }}
16 | {{ with .TableOfContents }}
17 |