gitextract_xb6i9ro3/ ├── .commitlintrc.js ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .husky/ │ ├── commit-msg │ └── pre-commit ├── .prettierignore ├── .prettierrc.js ├── @pauliescanlon/ │ └── gatsby-theme-terminal/ │ ├── README.md │ ├── gatsby-browser.js │ ├── gatsby-config.js │ ├── gatsby-node.js │ ├── gatsby-ssr.js │ ├── index.js │ ├── package.json │ └── src/ │ ├── components/ │ │ ├── logo/ │ │ │ ├── index.js │ │ │ └── logo.js │ │ ├── main/ │ │ │ ├── index.js │ │ │ └── main.js │ │ ├── nav/ │ │ │ ├── index.js │ │ │ └── nav.js │ │ ├── page-element/ │ │ │ ├── index.js │ │ │ └── page-element.js │ │ ├── seo/ │ │ │ ├── index.js │ │ │ └── seo.js │ │ ├── site-metadata/ │ │ │ ├── index.js │ │ │ └── site-metadata.js │ │ ├── source-article/ │ │ │ ├── index.js │ │ │ └── source-article.js │ │ ├── source-days/ │ │ │ ├── index.js │ │ │ └── source-days.js │ │ ├── source-list/ │ │ │ ├── index.js │ │ │ └── source-list.js │ │ ├── source-months/ │ │ │ ├── index.js │ │ │ └── source-months.js │ │ ├── source-tags/ │ │ │ ├── index.js │ │ │ └── source-tags.js │ │ └── source-words/ │ │ ├── index.js │ │ └── source-words.js │ ├── context/ │ │ └── index.js │ ├── data/ │ │ ├── index.js │ │ ├── use-config.js │ │ ├── use-dates.js │ │ ├── use-navigation.js │ │ ├── use-source.js │ │ ├── use-tags.js │ │ └── use-words.js │ ├── gatsby-plugin-theme-ui/ │ │ └── index.js │ ├── layouts/ │ │ ├── page-layout.js │ │ └── source-layout.js │ ├── pages/ │ │ └── 404.js │ └── utils/ │ └── index.js ├── README.md ├── copy-readme.js ├── demo/ │ ├── LICENSE │ ├── README.md │ ├── gatsby-browser.js │ ├── gatsby-config.js │ ├── gatsby-node.js │ ├── gatsby-ssr.js │ ├── package.json │ └── src/ │ ├── @pauliescanlon/ │ │ └── gatsby-theme-terminal/ │ │ └── components/ │ │ └── Logo/ │ │ └── Logo.js │ ├── _temp/ │ │ ├── source-days.mdx │ │ ├── source-list.mdx │ │ ├── source-months.mdx │ │ ├── source-tags.mdx │ │ └── source-words.mdx │ ├── pages/ │ │ ├── components.mdx │ │ ├── index.mdx │ │ ├── markdown.mdx │ │ ├── posts.mdx │ │ ├── projects.mdx │ │ └── theme-ui-components.mdx │ ├── posts/ │ │ ├── 2019/ │ │ │ ├── 03/ │ │ │ │ └── a-pinned-post.mdx │ │ │ └── post-2.mdx │ │ ├── 2020/ │ │ │ ├── 01/ │ │ │ │ └── post-3.mdx │ │ │ ├── 02/ │ │ │ │ ├── post-4.mdx │ │ │ │ └── post-5.mdx │ │ │ └── 04/ │ │ │ └── private.mdx │ │ ├── 2021/ │ │ │ ├── local-image-post.mdx │ │ │ └── remote-image-post.mdx │ │ └── post-1.mdx │ └── projects/ │ ├── 2019/ │ │ └── project-2.mdx │ ├── 2020/ │ │ └── 01/ │ │ └── project-3.mdx │ └── project-1.mdx ├── netlify.toml └── package.json