gitextract_3x8h2ftp/ ├── .gitignore ├── LICENSE ├── README.md ├── demo/ │ ├── content/ │ │ └── episodes/ │ │ ├── 1/ │ │ │ └── index.md │ │ ├── 2/ │ │ │ └── index.md │ │ ├── 3/ │ │ │ └── index.md │ │ ├── 4/ │ │ │ └── index.md │ │ ├── 5/ │ │ │ └── index.md │ │ ├── 6/ │ │ │ └── index.md │ │ ├── 7/ │ │ │ └── index.md │ │ └── 8/ │ │ └── index.md │ ├── gatsby-config.js │ ├── package.json │ └── src/ │ ├── @vojtaholik/ │ │ └── gatsby-theme-simplecast/ │ │ └── lib/ │ │ └── config/ │ │ └── index.js │ ├── gatsby-plugin-theme-ui/ │ │ └── index.js │ └── pages/ │ ├── 404.js │ ├── index.js │ └── page-2.js ├── gatsby-theme-simplecast/ │ ├── .gitignore │ ├── .prettierrc │ ├── LICENSE │ ├── README.md │ ├── data/ │ │ └── mockupEpisodes.json │ ├── gatsby-browser.js │ ├── gatsby-config.js │ ├── gatsby-node.js │ ├── gatsby-ssr.js │ ├── index.js │ ├── package.json │ └── src/ │ ├── components/ │ │ ├── aside.js │ │ ├── bars.js │ │ ├── context.js │ │ ├── header.js │ │ ├── image.js │ │ ├── layout.css │ │ ├── layout.js │ │ ├── link.js │ │ ├── navigation.js │ │ ├── player.js │ │ ├── seo.js │ │ └── volumeBars.js │ ├── gatsby-plugin-theme-ui/ │ │ └── index.js │ ├── lib/ │ │ ├── config/ │ │ │ └── index.js │ │ └── formatTime.js │ ├── pages/ │ │ ├── 404.js │ │ └── index.js │ └── templates/ │ └── episode.js └── package.json