├── .env.development ├── .gitignore ├── .nvmrc ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── content ├── _optional.md ├── infoPages │ ├── 2018-07-18-this-is-a-test-info-page.md │ └── default.md ├── pages │ ├── blog.md │ ├── components.md │ ├── contact.md │ └── home.md ├── postCategories │ ├── news.md │ └── updates.md ├── posts │ ├── 2018-05-25-testing-1-8-2.md │ ├── 2025-07-07-coffee.md │ ├── hello-world.md │ ├── post-10.md │ ├── post-11.md │ ├── post-12.md │ ├── post-6.md │ ├── post-7.md │ ├── post-8.md │ ├── post-9.md │ ├── post-five.md │ ├── post-four.md │ ├── post-three.md │ └── post-two.md └── settings │ └── global.yml ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── netlify.toml ├── package.json ├── src ├── cms │ ├── cms-utils.js │ └── cms.js ├── components │ ├── Accordion.css │ ├── Accordion.js │ ├── AnchorLink.js │ ├── BackgroundVideo.css │ ├── BackgroundVideo.js │ ├── BlogSearch.js │ ├── Content.css │ ├── Content.js │ ├── Footer.css │ ├── Footer.js │ ├── Form.css │ ├── FormControlled.css │ ├── FormControlled.js │ ├── FormSimple.js │ ├── FormSimpleAjax.js │ ├── Gallery.css │ ├── Gallery.js │ ├── GithubCorner.css │ ├── GithubCorner.js │ ├── GoogleAnalytics.js │ ├── GoogleMap.js │ ├── Image.css │ ├── Image.js │ ├── InstagramFeed.css │ ├── InstagramFeed.js │ ├── Layout.js │ ├── Logo.css │ ├── Logo.js │ ├── Meta.js │ ├── Nav.css │ ├── Nav.js │ ├── NavLink.css │ ├── NavLink.js │ ├── Observer.js │ ├── Overlay.js │ ├── PageHeader.css │ ├── PageHeader.js │ ├── Popup.css │ ├── Popup.js │ ├── PostCard.css │ ├── PostCard.js │ ├── PostCategoriesNav.css │ ├── PostCategoriesNav.js │ ├── PostSection.css │ ├── PostSection.js │ ├── SVGIcon.css │ ├── SVGIcon.js │ ├── Schema.js │ ├── ScrollToTop.js │ ├── ServiceWorkerNotifications.js │ ├── Spinner.css │ ├── Spinner.js │ └── globalStyles.css ├── pages │ └── 404.js └── templates │ ├── BlogIndex.js │ ├── ComponentsPage.js │ ├── ContactPage.css │ ├── ContactPage.js │ ├── DefaultPage.js │ ├── HomePage.js │ ├── SinglePost.css │ └── SinglePost.js ├── static ├── admin │ ├── admin.css │ ├── config.yml │ └── email-templates │ │ ├── README.md │ │ ├── confirmation.heml │ │ ├── confirmation.html │ │ ├── email-change.heml │ │ ├── email-change.html │ │ ├── invitation.heml │ │ ├── invitation.html │ │ ├── password-recovery.heml │ │ └── password-recovery.html ├── favicon.ico └── images │ ├── banner.jpeg │ ├── calendar.svg │ ├── logo.png │ └── logo.svg └── yarn.lock /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/.env.development -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/README.md -------------------------------------------------------------------------------- /content/_optional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/_optional.md -------------------------------------------------------------------------------- /content/infoPages/2018-07-18-this-is-a-test-info-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/infoPages/2018-07-18-this-is-a-test-info-page.md -------------------------------------------------------------------------------- /content/infoPages/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/infoPages/default.md -------------------------------------------------------------------------------- /content/pages/blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/pages/blog.md -------------------------------------------------------------------------------- /content/pages/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/pages/components.md -------------------------------------------------------------------------------- /content/pages/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/pages/contact.md -------------------------------------------------------------------------------- /content/pages/home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/pages/home.md -------------------------------------------------------------------------------- /content/postCategories/news.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/postCategories/news.md -------------------------------------------------------------------------------- /content/postCategories/updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/postCategories/updates.md -------------------------------------------------------------------------------- /content/posts/2018-05-25-testing-1-8-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/posts/2018-05-25-testing-1-8-2.md -------------------------------------------------------------------------------- /content/posts/2025-07-07-coffee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/posts/2025-07-07-coffee.md -------------------------------------------------------------------------------- /content/posts/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/posts/hello-world.md -------------------------------------------------------------------------------- /content/posts/post-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/posts/post-10.md -------------------------------------------------------------------------------- /content/posts/post-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/posts/post-11.md -------------------------------------------------------------------------------- /content/posts/post-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/posts/post-12.md -------------------------------------------------------------------------------- /content/posts/post-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/posts/post-6.md -------------------------------------------------------------------------------- /content/posts/post-7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/posts/post-7.md -------------------------------------------------------------------------------- /content/posts/post-8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/posts/post-8.md -------------------------------------------------------------------------------- /content/posts/post-9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/posts/post-9.md -------------------------------------------------------------------------------- /content/posts/post-five.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/posts/post-five.md -------------------------------------------------------------------------------- /content/posts/post-four.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/posts/post-four.md -------------------------------------------------------------------------------- /content/posts/post-three.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/posts/post-three.md -------------------------------------------------------------------------------- /content/posts/post-two.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/posts/post-two.md -------------------------------------------------------------------------------- /content/settings/global.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/content/settings/global.yml -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/package.json -------------------------------------------------------------------------------- /src/cms/cms-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/cms/cms-utils.js -------------------------------------------------------------------------------- /src/cms/cms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/cms/cms.js -------------------------------------------------------------------------------- /src/components/Accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Accordion.css -------------------------------------------------------------------------------- /src/components/Accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Accordion.js -------------------------------------------------------------------------------- /src/components/AnchorLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/AnchorLink.js -------------------------------------------------------------------------------- /src/components/BackgroundVideo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/BackgroundVideo.css -------------------------------------------------------------------------------- /src/components/BackgroundVideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/BackgroundVideo.js -------------------------------------------------------------------------------- /src/components/BlogSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/BlogSearch.js -------------------------------------------------------------------------------- /src/components/Content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Content.css -------------------------------------------------------------------------------- /src/components/Content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Content.js -------------------------------------------------------------------------------- /src/components/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Footer.css -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/Form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Form.css -------------------------------------------------------------------------------- /src/components/FormControlled.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/FormControlled.css -------------------------------------------------------------------------------- /src/components/FormControlled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/FormControlled.js -------------------------------------------------------------------------------- /src/components/FormSimple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/FormSimple.js -------------------------------------------------------------------------------- /src/components/FormSimpleAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/FormSimpleAjax.js -------------------------------------------------------------------------------- /src/components/Gallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Gallery.css -------------------------------------------------------------------------------- /src/components/Gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Gallery.js -------------------------------------------------------------------------------- /src/components/GithubCorner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/GithubCorner.css -------------------------------------------------------------------------------- /src/components/GithubCorner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/GithubCorner.js -------------------------------------------------------------------------------- /src/components/GoogleAnalytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/GoogleAnalytics.js -------------------------------------------------------------------------------- /src/components/GoogleMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/GoogleMap.js -------------------------------------------------------------------------------- /src/components/Image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Image.css -------------------------------------------------------------------------------- /src/components/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Image.js -------------------------------------------------------------------------------- /src/components/InstagramFeed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/InstagramFeed.css -------------------------------------------------------------------------------- /src/components/InstagramFeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/InstagramFeed.js -------------------------------------------------------------------------------- /src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Layout.js -------------------------------------------------------------------------------- /src/components/Logo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Logo.css -------------------------------------------------------------------------------- /src/components/Logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Logo.js -------------------------------------------------------------------------------- /src/components/Meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Meta.js -------------------------------------------------------------------------------- /src/components/Nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Nav.css -------------------------------------------------------------------------------- /src/components/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Nav.js -------------------------------------------------------------------------------- /src/components/NavLink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/NavLink.css -------------------------------------------------------------------------------- /src/components/NavLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/NavLink.js -------------------------------------------------------------------------------- /src/components/Observer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Observer.js -------------------------------------------------------------------------------- /src/components/Overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Overlay.js -------------------------------------------------------------------------------- /src/components/PageHeader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/PageHeader.css -------------------------------------------------------------------------------- /src/components/PageHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/PageHeader.js -------------------------------------------------------------------------------- /src/components/Popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Popup.css -------------------------------------------------------------------------------- /src/components/Popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Popup.js -------------------------------------------------------------------------------- /src/components/PostCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/PostCard.css -------------------------------------------------------------------------------- /src/components/PostCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/PostCard.js -------------------------------------------------------------------------------- /src/components/PostCategoriesNav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/PostCategoriesNav.css -------------------------------------------------------------------------------- /src/components/PostCategoriesNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/PostCategoriesNav.js -------------------------------------------------------------------------------- /src/components/PostSection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/PostSection.css -------------------------------------------------------------------------------- /src/components/PostSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/PostSection.js -------------------------------------------------------------------------------- /src/components/SVGIcon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/SVGIcon.css -------------------------------------------------------------------------------- /src/components/SVGIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/SVGIcon.js -------------------------------------------------------------------------------- /src/components/Schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Schema.js -------------------------------------------------------------------------------- /src/components/ScrollToTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/ScrollToTop.js -------------------------------------------------------------------------------- /src/components/ServiceWorkerNotifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/ServiceWorkerNotifications.js -------------------------------------------------------------------------------- /src/components/Spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Spinner.css -------------------------------------------------------------------------------- /src/components/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/Spinner.js -------------------------------------------------------------------------------- /src/components/globalStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/components/globalStyles.css -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/templates/BlogIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/templates/BlogIndex.js -------------------------------------------------------------------------------- /src/templates/ComponentsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/templates/ComponentsPage.js -------------------------------------------------------------------------------- /src/templates/ContactPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/templates/ContactPage.css -------------------------------------------------------------------------------- /src/templates/ContactPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/templates/ContactPage.js -------------------------------------------------------------------------------- /src/templates/DefaultPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/templates/DefaultPage.js -------------------------------------------------------------------------------- /src/templates/HomePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/templates/HomePage.js -------------------------------------------------------------------------------- /src/templates/SinglePost.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/templates/SinglePost.css -------------------------------------------------------------------------------- /src/templates/SinglePost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/src/templates/SinglePost.js -------------------------------------------------------------------------------- /static/admin/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/static/admin/admin.css -------------------------------------------------------------------------------- /static/admin/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/static/admin/config.yml -------------------------------------------------------------------------------- /static/admin/email-templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/static/admin/email-templates/README.md -------------------------------------------------------------------------------- /static/admin/email-templates/confirmation.heml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/static/admin/email-templates/confirmation.heml -------------------------------------------------------------------------------- /static/admin/email-templates/confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/static/admin/email-templates/confirmation.html -------------------------------------------------------------------------------- /static/admin/email-templates/email-change.heml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/static/admin/email-templates/email-change.heml -------------------------------------------------------------------------------- /static/admin/email-templates/email-change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/static/admin/email-templates/email-change.html -------------------------------------------------------------------------------- /static/admin/email-templates/invitation.heml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/static/admin/email-templates/invitation.heml -------------------------------------------------------------------------------- /static/admin/email-templates/invitation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/static/admin/email-templates/invitation.html -------------------------------------------------------------------------------- /static/admin/email-templates/password-recovery.heml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/static/admin/email-templates/password-recovery.heml -------------------------------------------------------------------------------- /static/admin/email-templates/password-recovery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/static/admin/email-templates/password-recovery.html -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/images/banner.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/static/images/banner.jpeg -------------------------------------------------------------------------------- /static/images/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/static/images/calendar.svg -------------------------------------------------------------------------------- /static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/static/images/logo.png -------------------------------------------------------------------------------- /static/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/static/images/logo.svg -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thriveweb/yellowcake/HEAD/yarn.lock --------------------------------------------------------------------------------