├── LICENSE ├── README.md ├── _content.qmd ├── _extensions ├── documenterjl │ └── _extension.yml └── julia │ ├── _extension.yml │ ├── custom.scss │ ├── revealjs.scss │ └── revealjs_header.html ├── template.html ├── template.qmd ├── template_files └── libs │ ├── bootstrap │ ├── bootstrap-icons.css │ ├── bootstrap-icons.woff │ ├── bootstrap.min.css │ └── bootstrap.min.js │ ├── clipboard │ └── clipboard.min.js │ ├── quarto-html │ ├── anchor.min.js │ ├── light-border.css │ ├── popper.min.js │ ├── quarto-html.min.css │ ├── quarto-syntax-highlighting.css │ ├── quarto.js │ ├── tabby.min.js │ ├── tippy.css │ └── tippy.umd.min.js │ └── revealjs │ ├── dist │ ├── reset.css │ ├── reveal.css │ ├── reveal.esm.js │ ├── reveal.esm.js.map │ ├── reveal.js │ ├── reveal.js.map │ └── theme │ │ ├── fonts │ │ ├── league-gothic │ │ │ ├── LICENSE │ │ │ ├── league-gothic.css │ │ │ ├── league-gothic.eot │ │ │ ├── league-gothic.ttf │ │ │ └── league-gothic.woff │ │ └── source-sans-pro │ │ │ ├── LICENSE │ │ │ ├── source-sans-pro-italic.eot │ │ │ ├── source-sans-pro-italic.ttf │ │ │ ├── source-sans-pro-italic.woff │ │ │ ├── source-sans-pro-regular.eot │ │ │ ├── source-sans-pro-regular.ttf │ │ │ ├── source-sans-pro-regular.woff │ │ │ ├── source-sans-pro-semibold.eot │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ ├── source-sans-pro-semibold.woff │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ └── source-sans-pro.css │ │ └── quarto.css │ └── plugin │ ├── highlight │ ├── highlight.esm.js │ ├── highlight.js │ ├── monokai.css │ ├── plugin.js │ └── zenburn.css │ ├── markdown │ ├── markdown.esm.js │ ├── markdown.js │ └── plugin.js │ ├── math │ ├── katex.js │ ├── math.esm.js │ ├── math.js │ ├── mathjax2.js │ ├── mathjax3.js │ └── plugin.js │ ├── notes │ ├── notes.esm.js │ ├── notes.js │ ├── plugin.js │ └── speaker-view.html │ ├── pdf-export │ ├── pdfexport.js │ └── plugin.yml │ ├── quarto-line-highlight │ ├── line-highlight.css │ ├── line-highlight.js │ └── plugin.yml │ ├── quarto-support │ ├── footer.css │ ├── plugin.yml │ └── support.js │ ├── reveal-menu │ ├── menu.css │ ├── menu.js │ ├── plugin.yml │ ├── quarto-menu.css │ └── quarto-menu.js │ ├── search │ ├── plugin.js │ ├── search.esm.js │ └── search.js │ └── zoom │ ├── plugin.js │ ├── zoom.esm.js │ └── zoom.js └── www └── qrcode.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/README.md -------------------------------------------------------------------------------- /_content.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/_content.qmd -------------------------------------------------------------------------------- /_extensions/documenterjl/_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/_extensions/documenterjl/_extension.yml -------------------------------------------------------------------------------- /_extensions/julia/_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/_extensions/julia/_extension.yml -------------------------------------------------------------------------------- /_extensions/julia/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/_extensions/julia/custom.scss -------------------------------------------------------------------------------- /_extensions/julia/revealjs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/_extensions/julia/revealjs.scss -------------------------------------------------------------------------------- /_extensions/julia/revealjs_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/_extensions/julia/revealjs_header.html -------------------------------------------------------------------------------- /template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template.html -------------------------------------------------------------------------------- /template.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template.qmd -------------------------------------------------------------------------------- /template_files/libs/bootstrap/bootstrap-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/bootstrap/bootstrap-icons.css -------------------------------------------------------------------------------- /template_files/libs/bootstrap/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/bootstrap/bootstrap-icons.woff -------------------------------------------------------------------------------- /template_files/libs/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /template_files/libs/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /template_files/libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/clipboard/clipboard.min.js -------------------------------------------------------------------------------- /template_files/libs/quarto-html/anchor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/quarto-html/anchor.min.js -------------------------------------------------------------------------------- /template_files/libs/quarto-html/light-border.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/quarto-html/light-border.css -------------------------------------------------------------------------------- /template_files/libs/quarto-html/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/quarto-html/popper.min.js -------------------------------------------------------------------------------- /template_files/libs/quarto-html/quarto-html.min.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /template_files/libs/quarto-html/quarto-syntax-highlighting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/quarto-html/quarto-syntax-highlighting.css -------------------------------------------------------------------------------- /template_files/libs/quarto-html/quarto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/quarto-html/quarto.js -------------------------------------------------------------------------------- /template_files/libs/quarto-html/tabby.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/quarto-html/tabby.min.js -------------------------------------------------------------------------------- /template_files/libs/quarto-html/tippy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/quarto-html/tippy.css -------------------------------------------------------------------------------- /template_files/libs/quarto-html/tippy.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/quarto-html/tippy.umd.min.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/reset.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/reveal.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/reveal.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/reveal.esm.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/reveal.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/reveal.esm.js.map -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/reveal.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/reveal.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/reveal.js.map -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/league-gothic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/theme/fonts/league-gothic/LICENSE -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/LICENSE -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/quarto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/dist/theme/quarto.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/highlight/highlight.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/highlight/highlight.esm.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/highlight/highlight.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/highlight/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/highlight/monokai.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/highlight/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/highlight/plugin.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/highlight/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/highlight/zenburn.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/markdown/markdown.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/markdown/markdown.esm.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/markdown/markdown.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/markdown/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/markdown/plugin.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/math/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/math/katex.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/math/math.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/math/math.esm.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/math/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/math/math.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/math/mathjax2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/math/mathjax2.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/math/mathjax3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/math/mathjax3.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/math/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/math/plugin.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/notes/notes.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/notes/notes.esm.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/notes/notes.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/notes/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/notes/plugin.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/notes/speaker-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/notes/speaker-view.html -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/pdf-export/pdfexport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/pdf-export/pdfexport.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/pdf-export/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/pdf-export/plugin.yml -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/quarto-line-highlight/line-highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/quarto-line-highlight/line-highlight.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/quarto-line-highlight/line-highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/quarto-line-highlight/line-highlight.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/quarto-line-highlight/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/quarto-line-highlight/plugin.yml -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/quarto-support/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/quarto-support/footer.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/quarto-support/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/quarto-support/plugin.yml -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/quarto-support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/quarto-support/support.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-menu/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/reveal-menu/menu.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-menu/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/reveal-menu/menu.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-menu/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/reveal-menu/plugin.yml -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-menu/quarto-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/reveal-menu/quarto-menu.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-menu/quarto-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/reveal-menu/quarto-menu.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/search/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/search/plugin.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/search/search.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/search/search.esm.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/search/search.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/zoom/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/zoom/plugin.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/zoom/zoom.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/zoom/zoom.esm.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/zoom/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/template_files/libs/revealjs/plugin/zoom/zoom.js -------------------------------------------------------------------------------- /www/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pat-alt/quarto-julia/HEAD/www/qrcode.png --------------------------------------------------------------------------------