├── .github └── workflows │ └── gh-pages.yml ├── .gitignore ├── LICENSE ├── README.md ├── example ├── .gitignore ├── _layouts │ ├── gatsby-config.js │ ├── package.json │ └── static │ │ └── sitemap.xml ├── docs │ ├── assets │ │ ├── larry-teo-tPKufFNIZfs-unsplash.jpg │ │ └── rohit-tandon-qK6898jepEU-unsplash.jpg │ ├── code.md │ ├── cool.md │ ├── deep-links │ │ ├── one.md │ │ ├── three.md │ │ └── two.md │ ├── folder │ │ ├── level1.md │ │ └── subfolder │ │ │ ├── another subfolder │ │ │ └── level3.md │ │ │ └── level2.md │ ├── headings.md │ ├── images.md │ ├── many-headings.md │ ├── private │ │ ├── secret-nuclear-codes.md │ │ └── secret-subfolder │ │ │ └── my-passwords.md │ ├── readme.md │ ├── tests │ │ ├── lots-of-code.md │ │ └── tests.md │ ├── text.md │ └── webcomponents.md └── readme.md ├── gatsby-philipps-foam-theme ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── README.md ├── fragments │ ├── file-and-roam-graph.fragment │ ├── file-and-roam.fragment │ ├── file-graph.fragment │ ├── file.fragment │ ├── roam-graph.fragment │ └── roam.fragment ├── gatsby-config.js ├── gatsby-node.js ├── index.js ├── package.json ├── postcss.config.js ├── search-indexes.js ├── should-handle-file.js ├── src │ ├── components │ │ ├── SearchPopover.jsx │ │ ├── custom.css │ │ ├── dark-mode-toggle.css │ │ ├── dark-mode-toggle.jsx │ │ ├── g6-graph-viz.jsx │ │ ├── graph-button.css │ │ ├── graph-button2.jsx │ │ ├── header.jsx │ │ ├── mdx-components │ │ │ ├── CodeMirror6.jsx │ │ │ ├── FoamLink.jsx │ │ │ ├── anchor-tag.css │ │ │ ├── anchor-tag.jsx │ │ │ ├── index.js │ │ │ └── mdx-renderer.js │ │ ├── note-wrapper.css │ │ ├── note-wrapper.jsx │ │ ├── note.jsx │ │ ├── page-index-sidebar.jsx │ │ ├── reference.jsx │ │ ├── references-block.jsx │ │ ├── search-button.jsx │ │ ├── search.jsx │ │ ├── seo.jsx │ │ ├── stacked-layout.css │ │ ├── stacked-layout.jsx │ │ └── theme.css │ ├── hooks │ │ ├── useDebounce.js │ │ ├── useKeyboardListeners.js │ │ └── usePageIndex.js │ ├── pages │ │ └── 404.js │ ├── state │ │ ├── useSearchPopover.js │ │ └── useThemeState.js │ ├── templates │ │ ├── .gitkeep │ │ └── local-file.jsx │ ├── tw-styles.css │ ├── use-search.js │ ├── use-site-metadata.js │ ├── use-window-size.js │ └── utils │ │ ├── classNames.js │ │ ├── data-to-note.js │ │ └── gradient.js └── tailwind.config.js ├── gatsby-remark-foam-links ├── .npmignore ├── .prettierrc ├── index.js ├── package.json ├── readme.md ├── tests │ ├── index.test.js │ └── script.js └── yarn.lock ├── package.json └── yarn.lock /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/README.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | .cache/ 2 | public/ 3 | -------------------------------------------------------------------------------- /example/_layouts/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/example/_layouts/gatsby-config.js -------------------------------------------------------------------------------- /example/_layouts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/example/_layouts/package.json -------------------------------------------------------------------------------- /example/_layouts/static/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/example/_layouts/static/sitemap.xml -------------------------------------------------------------------------------- /example/docs/assets/larry-teo-tPKufFNIZfs-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/example/docs/assets/larry-teo-tPKufFNIZfs-unsplash.jpg -------------------------------------------------------------------------------- /example/docs/assets/rohit-tandon-qK6898jepEU-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/example/docs/assets/rohit-tandon-qK6898jepEU-unsplash.jpg -------------------------------------------------------------------------------- /example/docs/code.md: -------------------------------------------------------------------------------- 1 | # Code 2 | 3 | ```js 4 | console.log('hello world!') 5 | ``` 6 | 7 | [[text]] 8 | -------------------------------------------------------------------------------- /example/docs/cool.md: -------------------------------------------------------------------------------- 1 | # Cool 2 | 3 | Foam rocks 4 | 5 | - [[code]] 6 | -------------------------------------------------------------------------------- /example/docs/deep-links/one.md: -------------------------------------------------------------------------------- 1 | # One 2 | 3 | [[two]] 4 | -------------------------------------------------------------------------------- /example/docs/deep-links/three.md: -------------------------------------------------------------------------------- 1 | # Three 2 | -------------------------------------------------------------------------------- /example/docs/deep-links/two.md: -------------------------------------------------------------------------------- 1 | # Two 2 | 3 | [[three]] 4 | -------------------------------------------------------------------------------- /example/docs/folder/level1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/example/docs/folder/level1.md -------------------------------------------------------------------------------- /example/docs/folder/subfolder/another subfolder/level3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/example/docs/folder/subfolder/another subfolder/level3.md -------------------------------------------------------------------------------- /example/docs/folder/subfolder/level2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/example/docs/folder/subfolder/level2.md -------------------------------------------------------------------------------- /example/docs/headings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/example/docs/headings.md -------------------------------------------------------------------------------- /example/docs/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/example/docs/images.md -------------------------------------------------------------------------------- /example/docs/many-headings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/example/docs/many-headings.md -------------------------------------------------------------------------------- /example/docs/private/secret-nuclear-codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/example/docs/private/secret-nuclear-codes.md -------------------------------------------------------------------------------- /example/docs/private/secret-subfolder/my-passwords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/example/docs/private/secret-subfolder/my-passwords.md -------------------------------------------------------------------------------- /example/docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/example/docs/readme.md -------------------------------------------------------------------------------- /example/docs/tests/lots-of-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/example/docs/tests/lots-of-code.md -------------------------------------------------------------------------------- /example/docs/tests/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/example/docs/tests/tests.md -------------------------------------------------------------------------------- /example/docs/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/example/docs/text.md -------------------------------------------------------------------------------- /example/docs/webcomponents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/example/docs/webcomponents.md -------------------------------------------------------------------------------- /example/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/example/readme.md -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/.eslintignore -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/.eslintrc.json -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/.gitignore: -------------------------------------------------------------------------------- 1 | /src/use-graph-data.js 2 | -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/.prettierrc -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/README.md -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/fragments/file-and-roam-graph.fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/fragments/file-and-roam-graph.fragment -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/fragments/file-and-roam.fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/fragments/file-and-roam.fragment -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/fragments/file-graph.fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/fragments/file-graph.fragment -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/fragments/file.fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/fragments/file.fragment -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/fragments/roam-graph.fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/fragments/roam-graph.fragment -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/fragments/roam.fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/fragments/roam.fragment -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/index.js: -------------------------------------------------------------------------------- 1 | // noop 2 | -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/package.json -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/postcss.config.js -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/search-indexes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/search-indexes.js -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/should-handle-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/should-handle-file.js -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/SearchPopover.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/SearchPopover.jsx -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/custom.css: -------------------------------------------------------------------------------- 1 | /** Add any custom CSS you want here **/ 2 | -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/dark-mode-toggle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/dark-mode-toggle.css -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/dark-mode-toggle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/dark-mode-toggle.jsx -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/g6-graph-viz.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/g6-graph-viz.jsx -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/graph-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/graph-button.css -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/graph-button2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/graph-button2.jsx -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/header.jsx -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/mdx-components/CodeMirror6.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/mdx-components/CodeMirror6.jsx -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/mdx-components/FoamLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/mdx-components/FoamLink.jsx -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/mdx-components/anchor-tag.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/mdx-components/anchor-tag.css -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/mdx-components/anchor-tag.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/mdx-components/anchor-tag.jsx -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/mdx-components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/mdx-components/index.js -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/mdx-components/mdx-renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/mdx-components/mdx-renderer.js -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/note-wrapper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/note-wrapper.css -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/note-wrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/note-wrapper.jsx -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/note.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/note.jsx -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/page-index-sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/page-index-sidebar.jsx -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/reference.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/reference.jsx -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/references-block.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/references-block.jsx -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/search-button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/search-button.jsx -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/search.jsx -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/seo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/seo.jsx -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/stacked-layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/stacked-layout.css -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/stacked-layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/stacked-layout.jsx -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/components/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/components/theme.css -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/hooks/useDebounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/hooks/useDebounce.js -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/hooks/useKeyboardListeners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/hooks/useKeyboardListeners.js -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/hooks/usePageIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/hooks/usePageIndex.js -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/pages/404.js -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/state/useSearchPopover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/state/useSearchPopover.js -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/state/useThemeState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/state/useThemeState.js -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/templates/local-file.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/templates/local-file.jsx -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/tw-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/tw-styles.css -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/use-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/use-search.js -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/use-site-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/use-site-metadata.js -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/use-window-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/use-window-size.js -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/utils/classNames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/utils/classNames.js -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/utils/data-to-note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/utils/data-to-note.js -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/src/utils/gradient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/src/utils/gradient.js -------------------------------------------------------------------------------- /gatsby-philipps-foam-theme/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-philipps-foam-theme/tailwind.config.js -------------------------------------------------------------------------------- /gatsby-remark-foam-links/.npmignore: -------------------------------------------------------------------------------- 1 | ./tests 2 | .prettierrc 3 | -------------------------------------------------------------------------------- /gatsby-remark-foam-links/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-remark-foam-links/.prettierrc -------------------------------------------------------------------------------- /gatsby-remark-foam-links/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-remark-foam-links/index.js -------------------------------------------------------------------------------- /gatsby-remark-foam-links/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-remark-foam-links/package.json -------------------------------------------------------------------------------- /gatsby-remark-foam-links/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-remark-foam-links/readme.md -------------------------------------------------------------------------------- /gatsby-remark-foam-links/tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-remark-foam-links/tests/index.test.js -------------------------------------------------------------------------------- /gatsby-remark-foam-links/tests/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-remark-foam-links/tests/script.js -------------------------------------------------------------------------------- /gatsby-remark-foam-links/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/gatsby-remark-foam-links/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phartenfeller/gatsby-philipps-foam-theme/HEAD/yarn.lock --------------------------------------------------------------------------------