├── .github └── workflows │ └── gh-pages.yml ├── .gitignore ├── BUILDING.md ├── LICENSE ├── README.md ├── archetypes └── default.md ├── assets └── custom-theme.scss ├── config.toml ├── content └── _index.md ├── layouts ├── partials │ └── reveal-hugo │ │ └── body.html └── shortcodes │ ├── g.html │ ├── grid.html │ ├── social.html │ └── talk-link.html ├── static ├── favicon.ico ├── images │ └── icon.png └── javascript │ └── tex-svg.js └── themes └── reveal-hugo ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets └── reveal-js │ └── css │ ├── reveal.scss │ └── theme │ ├── source │ ├── beige.scss │ ├── black.scss │ ├── blood.scss │ ├── league.scss │ ├── moon.scss │ ├── night.scss │ ├── serif.scss │ ├── simple.scss │ ├── sky.scss │ ├── solarized.scss │ └── white.scss │ └── template │ ├── mixins.scss │ ├── settings.scss │ └── theme.scss ├── exampleSite ├── .forestry │ └── settings.yml ├── assets │ └── custom-theme.scss ├── config.toml ├── content │ ├── _index.md │ ├── bundle-example │ │ ├── continued.md │ │ └── index.md │ ├── custom-theme-example │ │ └── _index.md │ ├── extending-layout-example │ │ └── _index.md │ ├── highlightjs-linenumbers-example │ │ └── _index.md │ ├── home │ │ ├── configuration.md │ │ ├── features.md │ │ ├── resources.md │ │ ├── shortcodes │ │ │ ├── fragment.md │ │ │ ├── introduction.md │ │ │ ├── markdown.md │ │ │ ├── other.md │ │ │ ├── section.md │ │ │ └── slide.md │ │ └── usage.md │ ├── hugo-hl-example │ │ └── _index.md │ ├── logo-example │ │ ├── _index.md │ │ └── github-logo.png │ ├── plugin-example │ │ ├── _index.md │ │ ├── sample1.jpg │ │ ├── sample2.jpg │ │ └── sample3.jpg │ ├── section-example │ │ ├── _index.md │ │ └── presentation.md │ └── template-example │ │ ├── _index.md │ │ └── continued.md ├── data │ ├── common │ │ └── nested.toml │ └── home.toml ├── layouts │ └── partials │ │ ├── highlightjs-linenumbers-example │ │ └── reveal-hugo │ │ │ └── body.html │ │ ├── home │ │ └── reveal-hugo │ │ │ ├── body.html │ │ │ ├── end.html │ │ │ └── head.html │ │ ├── logo-example │ │ └── reveal-hugo │ │ │ └── body.html │ │ └── plugin-example │ │ └── reveal-hugo │ │ └── head.html ├── resources │ └── _gen │ │ └── assets │ │ └── scss │ │ ├── custom-theme.scss_b53257441d1f91bc860cc5c6b2e22276.content │ │ └── custom-theme.scss_b53257441d1f91bc860cc5c6b2e22276.json └── static │ ├── _redirects │ ├── css │ └── custom.css │ ├── favicon.ico │ ├── images │ └── alex-litvin-790876-unsplash.jpg │ ├── js │ └── custom.js │ ├── plugin │ └── gallery │ │ ├── gallery.css │ │ └── gallery.plugin.js │ └── reveal-hugo │ └── themes │ └── robot-lung.css ├── images ├── reveal-hugo-hello-world.png ├── screenshot.png └── tn.png ├── layouts ├── _default │ ├── baseof.reveal.html │ ├── bundle.reveal.html │ ├── index.reveal.html │ ├── list.reveal.html │ └── single.reveal.html ├── partials │ ├── layout │ │ ├── head.html │ │ ├── javascript.html │ │ └── theme.html │ └── reveal-hugo │ │ ├── body.html │ │ ├── end.html │ │ ├── head.html │ │ └── slides.html └── shortcodes │ ├── frag.html │ ├── fragment.html │ ├── markdown.html │ ├── note.html │ ├── section.html │ └── slide.html ├── netlify.toml ├── package-lock.json ├── package.json ├── static ├── highlight-js │ ├── a11y-dark.min.css │ ├── a11y-light.min.css │ ├── agate.min.css │ ├── an-old-hope.min.css │ ├── androidstudio.min.css │ ├── arduino-light.min.css │ ├── arta.min.css │ ├── ascetic.min.css │ ├── atelier-cave-dark.min.css │ ├── atelier-cave-light.min.css │ ├── atelier-dune-dark.min.css │ ├── atelier-dune-light.min.css │ ├── atelier-estuary-dark.min.css │ ├── atelier-estuary-light.min.css │ ├── atelier-forest-dark.min.css │ ├── atelier-forest-light.min.css │ ├── atelier-heath-dark.min.css │ ├── atelier-heath-light.min.css │ ├── atelier-lakeside-dark.min.css │ ├── atelier-lakeside-light.min.css │ ├── atelier-plateau-dark.min.css │ ├── atelier-plateau-light.min.css │ ├── atelier-savanna-dark.min.css │ ├── atelier-savanna-light.min.css │ ├── atelier-seaside-dark.min.css │ ├── atelier-seaside-light.min.css │ ├── atelier-sulphurpool-dark.min.css │ ├── atelier-sulphurpool-light.min.css │ ├── atom-one-dark-reasonable.min.css │ ├── atom-one-dark.min.css │ ├── atom-one-light.min.css │ ├── brown-paper.min.css │ ├── brown-papersq.png │ ├── codepen-embed.min.css │ ├── color-brewer.min.css │ ├── darcula.min.css │ ├── dark.min.css │ ├── darkula.min.css │ ├── default.min.css │ ├── docco.min.css │ ├── dracula.min.css │ ├── far.min.css │ ├── foundation.min.css │ ├── github-gist.min.css │ ├── github.min.css │ ├── gml.min.css │ ├── googlecode.min.css │ ├── gradient-dark.min.css │ ├── grayscale.min.css │ ├── gruvbox-dark.min.css │ ├── gruvbox-light.min.css │ ├── hopscotch.min.css │ ├── hybrid.min.css │ ├── idea.min.css │ ├── ir-black.min.css │ ├── isbl-editor-dark.min.css │ ├── isbl-editor-light.min.css │ ├── kimbie.dark.min.css │ ├── kimbie.light.min.css │ ├── lightfair.min.css │ ├── magula.min.css │ ├── mono-blue.min.css │ ├── monokai-sublime.min.css │ ├── monokai.min.css │ ├── night-owl.min.css │ ├── nord.min.css │ ├── obsidian.min.css │ ├── ocean.min.css │ ├── paraiso-dark.min.css │ ├── paraiso-light.min.css │ ├── pojoaque.jpg │ ├── pojoaque.min.css │ ├── purebasic.min.css │ ├── qtcreator_dark.min.css │ ├── qtcreator_light.min.css │ ├── railscasts.min.css │ ├── rainbow.min.css │ ├── routeros.min.css │ ├── school-book.min.css │ ├── school-book.png │ ├── shades-of-purple.min.css │ ├── solarized-dark.min.css │ ├── solarized-light.min.css │ ├── sunburst.min.css │ ├── tomorrow-night-blue.min.css │ ├── tomorrow-night-bright.min.css │ ├── tomorrow-night-eighties.min.css │ ├── tomorrow-night.min.css │ ├── tomorrow.min.css │ ├── vs.min.css │ ├── vs2015.min.css │ ├── xcode.min.css │ ├── xt256.min.css │ └── zenburn.min.css ├── reveal-hugo │ ├── object-assign.js │ └── themes │ │ ├── robot-lung.css │ │ └── sunblind.css └── reveal-js │ ├── css │ ├── print │ │ ├── paper.css │ │ └── pdf.css │ ├── reset.css │ ├── reveal.css │ └── theme │ │ ├── README.md │ │ ├── beige.css │ │ ├── black.css │ │ ├── blood.css │ │ ├── league.css │ │ ├── moon.css │ │ ├── night.css │ │ ├── serif.css │ │ ├── simple.css │ │ ├── sky.css │ │ ├── solarized.css │ │ └── white.css │ ├── js │ └── reveal.js │ ├── lib │ ├── css │ │ ├── monokai.css │ │ └── zenburn.css │ ├── font │ │ ├── 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 │ └── js │ │ ├── html5shiv.js │ │ └── promise.js │ └── plugin │ ├── highlight │ └── highlight.js │ ├── markdown │ ├── example.html │ ├── example.md │ ├── markdown.js │ └── marked.js │ ├── math │ └── math.js │ ├── multiplex │ ├── client.js │ ├── index.js │ ├── master.js │ └── package.json │ ├── notes-server │ ├── client.js │ ├── index.js │ └── notes.html │ ├── notes │ ├── notes.html │ └── notes.js │ ├── print-pdf │ └── print-pdf.js │ ├── search │ └── search.js │ └── zoom-js │ └── zoom.js └── theme.toml /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/BUILDING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /assets/custom-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/assets/custom-theme.scss -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/config.toml -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/content/_index.md -------------------------------------------------------------------------------- /layouts/partials/reveal-hugo/body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/layouts/partials/reveal-hugo/body.html -------------------------------------------------------------------------------- /layouts/shortcodes/g.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/layouts/shortcodes/g.html -------------------------------------------------------------------------------- /layouts/shortcodes/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/layouts/shortcodes/grid.html -------------------------------------------------------------------------------- /layouts/shortcodes/social.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/layouts/shortcodes/social.html -------------------------------------------------------------------------------- /layouts/shortcodes/talk-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/layouts/shortcodes/talk-link.html -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/static/images/icon.png -------------------------------------------------------------------------------- /static/javascript/tex-svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/static/javascript/tex-svg.js -------------------------------------------------------------------------------- /themes/reveal-hugo/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | public 3 | -------------------------------------------------------------------------------- /themes/reveal-hugo/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /themes/reveal-hugo/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/CONTRIBUTING.md -------------------------------------------------------------------------------- /themes/reveal-hugo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/LICENSE -------------------------------------------------------------------------------- /themes/reveal-hugo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/README.md -------------------------------------------------------------------------------- /themes/reveal-hugo/assets/reveal-js/css/reveal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/assets/reveal-js/css/reveal.scss -------------------------------------------------------------------------------- /themes/reveal-hugo/assets/reveal-js/css/theme/source/beige.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/assets/reveal-js/css/theme/source/beige.scss -------------------------------------------------------------------------------- /themes/reveal-hugo/assets/reveal-js/css/theme/source/black.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/assets/reveal-js/css/theme/source/black.scss -------------------------------------------------------------------------------- /themes/reveal-hugo/assets/reveal-js/css/theme/source/blood.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/assets/reveal-js/css/theme/source/blood.scss -------------------------------------------------------------------------------- /themes/reveal-hugo/assets/reveal-js/css/theme/source/league.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/assets/reveal-js/css/theme/source/league.scss -------------------------------------------------------------------------------- /themes/reveal-hugo/assets/reveal-js/css/theme/source/moon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/assets/reveal-js/css/theme/source/moon.scss -------------------------------------------------------------------------------- /themes/reveal-hugo/assets/reveal-js/css/theme/source/night.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/assets/reveal-js/css/theme/source/night.scss -------------------------------------------------------------------------------- /themes/reveal-hugo/assets/reveal-js/css/theme/source/serif.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/assets/reveal-js/css/theme/source/serif.scss -------------------------------------------------------------------------------- /themes/reveal-hugo/assets/reveal-js/css/theme/source/simple.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/assets/reveal-js/css/theme/source/simple.scss -------------------------------------------------------------------------------- /themes/reveal-hugo/assets/reveal-js/css/theme/source/sky.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/assets/reveal-js/css/theme/source/sky.scss -------------------------------------------------------------------------------- /themes/reveal-hugo/assets/reveal-js/css/theme/source/solarized.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/assets/reveal-js/css/theme/source/solarized.scss -------------------------------------------------------------------------------- /themes/reveal-hugo/assets/reveal-js/css/theme/source/white.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/assets/reveal-js/css/theme/source/white.scss -------------------------------------------------------------------------------- /themes/reveal-hugo/assets/reveal-js/css/theme/template/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/assets/reveal-js/css/theme/template/mixins.scss -------------------------------------------------------------------------------- /themes/reveal-hugo/assets/reveal-js/css/theme/template/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/assets/reveal-js/css/theme/template/settings.scss -------------------------------------------------------------------------------- /themes/reveal-hugo/assets/reveal-js/css/theme/template/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/assets/reveal-js/css/theme/template/theme.scss -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/.forestry/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/.forestry/settings.yml -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/assets/custom-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/assets/custom-theme.scss -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/config.toml -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/_index.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/bundle-example/continued.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/bundle-example/continued.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/bundle-example/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/bundle-example/index.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/custom-theme-example/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/custom-theme-example/_index.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/extending-layout-example/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/extending-layout-example/_index.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/highlightjs-linenumbers-example/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/highlightjs-linenumbers-example/_index.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/home/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/home/configuration.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/home/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/home/features.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/home/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/home/resources.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/home/shortcodes/fragment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/home/shortcodes/fragment.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/home/shortcodes/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/home/shortcodes/introduction.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/home/shortcodes/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/home/shortcodes/markdown.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/home/shortcodes/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/home/shortcodes/other.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/home/shortcodes/section.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/home/shortcodes/section.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/home/shortcodes/slide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/home/shortcodes/slide.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/home/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/home/usage.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/hugo-hl-example/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/hugo-hl-example/_index.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/logo-example/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/logo-example/_index.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/logo-example/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/logo-example/github-logo.png -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/plugin-example/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/plugin-example/_index.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/plugin-example/sample1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/plugin-example/sample1.jpg -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/plugin-example/sample2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/plugin-example/sample2.jpg -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/plugin-example/sample3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/plugin-example/sample3.jpg -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/section-example/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/section-example/_index.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/section-example/presentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/section-example/presentation.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/template-example/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/template-example/_index.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/content/template-example/continued.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/template-example/continued.md -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/data/common/nested.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/data/common/nested.toml -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/data/home.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/data/home.toml -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/layouts/partials/highlightjs-linenumbers-example/reveal-hugo/body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/layouts/partials/highlightjs-linenumbers-example/reveal-hugo/body.html -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/layouts/partials/home/reveal-hugo/body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/layouts/partials/home/reveal-hugo/body.html -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/layouts/partials/home/reveal-hugo/end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/layouts/partials/home/reveal-hugo/end.html -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/layouts/partials/home/reveal-hugo/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/layouts/partials/home/reveal-hugo/head.html -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/layouts/partials/logo-example/reveal-hugo/body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/layouts/partials/logo-example/reveal-hugo/body.html -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/layouts/partials/plugin-example/reveal-hugo/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/layouts/partials/plugin-example/reveal-hugo/head.html -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/resources/_gen/assets/scss/custom-theme.scss_b53257441d1f91bc860cc5c6b2e22276.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/resources/_gen/assets/scss/custom-theme.scss_b53257441d1f91bc860cc5c6b2e22276.content -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/resources/_gen/assets/scss/custom-theme.scss_b53257441d1f91bc860cc5c6b2e22276.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/resources/_gen/assets/scss/custom-theme.scss_b53257441d1f91bc860cc5c6b2e22276.json -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/static/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/static/_redirects -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/static/css/custom.css -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/static/favicon.ico -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/static/images/alex-litvin-790876-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/static/images/alex-litvin-790876-unsplash.jpg -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/static/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/static/js/custom.js -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/static/plugin/gallery/gallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/static/plugin/gallery/gallery.css -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/static/plugin/gallery/gallery.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/static/plugin/gallery/gallery.plugin.js -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/static/reveal-hugo/themes/robot-lung.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/static/reveal-hugo/themes/robot-lung.css -------------------------------------------------------------------------------- /themes/reveal-hugo/images/reveal-hugo-hello-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/images/reveal-hugo-hello-world.png -------------------------------------------------------------------------------- /themes/reveal-hugo/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/images/screenshot.png -------------------------------------------------------------------------------- /themes/reveal-hugo/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/images/tn.png -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/_default/baseof.reveal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/layouts/_default/baseof.reveal.html -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/_default/bundle.reveal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/layouts/_default/bundle.reveal.html -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/_default/index.reveal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/layouts/_default/index.reveal.html -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/_default/list.reveal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/layouts/_default/list.reveal.html -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/_default/single.reveal.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/partials/layout/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/layouts/partials/layout/head.html -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/partials/layout/javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/layouts/partials/layout/javascript.html -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/partials/layout/theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/layouts/partials/layout/theme.html -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/partials/reveal-hugo/body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/layouts/partials/reveal-hugo/body.html -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/partials/reveal-hugo/end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/layouts/partials/reveal-hugo/end.html -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/partials/reveal-hugo/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/layouts/partials/reveal-hugo/head.html -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/partials/reveal-hugo/slides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/layouts/partials/reveal-hugo/slides.html -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/shortcodes/frag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/layouts/shortcodes/frag.html -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/shortcodes/fragment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/layouts/shortcodes/fragment.html -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/shortcodes/markdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/layouts/shortcodes/markdown.html -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/shortcodes/note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/layouts/shortcodes/note.html -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/shortcodes/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/layouts/shortcodes/section.html -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/shortcodes/slide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/layouts/shortcodes/slide.html -------------------------------------------------------------------------------- /themes/reveal-hugo/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/netlify.toml -------------------------------------------------------------------------------- /themes/reveal-hugo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/package-lock.json -------------------------------------------------------------------------------- /themes/reveal-hugo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/package.json -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/a11y-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/a11y-dark.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/a11y-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/a11y-light.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/agate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/agate.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/an-old-hope.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/an-old-hope.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/androidstudio.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/androidstudio.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/arduino-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/arduino-light.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/arta.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/arta.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/ascetic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/ascetic.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atelier-cave-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atelier-cave-dark.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atelier-cave-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atelier-cave-light.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atelier-dune-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atelier-dune-dark.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atelier-dune-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atelier-dune-light.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atelier-estuary-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atelier-estuary-dark.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atelier-estuary-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atelier-estuary-light.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atelier-forest-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atelier-forest-dark.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atelier-forest-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atelier-forest-light.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atelier-heath-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atelier-heath-dark.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atelier-heath-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atelier-heath-light.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atelier-lakeside-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atelier-lakeside-dark.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atelier-lakeside-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atelier-lakeside-light.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atelier-plateau-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atelier-plateau-dark.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atelier-plateau-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atelier-plateau-light.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atelier-savanna-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atelier-savanna-dark.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atelier-savanna-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atelier-savanna-light.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atelier-seaside-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atelier-seaside-dark.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atelier-seaside-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atelier-seaside-light.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atelier-sulphurpool-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atelier-sulphurpool-dark.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atelier-sulphurpool-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atelier-sulphurpool-light.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atom-one-dark-reasonable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atom-one-dark-reasonable.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atom-one-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atom-one-dark.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/atom-one-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/atom-one-light.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/brown-paper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/brown-paper.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/brown-papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/brown-papersq.png -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/codepen-embed.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/codepen-embed.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/color-brewer.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/color-brewer.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/darcula.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/darcula.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/dark.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/darkula.min.css: -------------------------------------------------------------------------------- 1 | @import url('darcula.css'); -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/default.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/docco.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/docco.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/dracula.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/dracula.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/far.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/far.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/foundation.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/foundation.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/github-gist.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/github-gist.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/github.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/github.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/gml.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/gml.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/googlecode.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/googlecode.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/gradient-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/gradient-dark.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/grayscale.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/grayscale.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/gruvbox-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/gruvbox-dark.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/gruvbox-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/gruvbox-light.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/hopscotch.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/hopscotch.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/hybrid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/hybrid.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/idea.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/idea.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/ir-black.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/ir-black.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/isbl-editor-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/isbl-editor-dark.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/isbl-editor-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/isbl-editor-light.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/kimbie.dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/kimbie.dark.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/kimbie.light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/kimbie.light.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/lightfair.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/lightfair.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/magula.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/magula.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/mono-blue.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/mono-blue.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/monokai-sublime.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/monokai-sublime.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/monokai.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/monokai.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/night-owl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/night-owl.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/nord.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/nord.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/obsidian.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/obsidian.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/ocean.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/ocean.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/paraiso-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/paraiso-dark.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/paraiso-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/paraiso-light.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/pojoaque.jpg -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/pojoaque.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/pojoaque.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/purebasic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/purebasic.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/qtcreator_dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/qtcreator_dark.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/qtcreator_light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/qtcreator_light.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/railscasts.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/railscasts.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/rainbow.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/rainbow.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/routeros.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/routeros.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/school-book.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/school-book.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/school-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/school-book.png -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/shades-of-purple.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/shades-of-purple.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/solarized-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/solarized-dark.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/solarized-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/solarized-light.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/sunburst.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/sunburst.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/tomorrow-night-blue.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/tomorrow-night-blue.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/tomorrow-night-bright.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/tomorrow-night-bright.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/tomorrow-night-eighties.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/tomorrow-night-eighties.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/tomorrow-night.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/tomorrow-night.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/tomorrow.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/tomorrow.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/vs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/vs.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/vs2015.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/vs2015.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/xcode.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/xcode.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/xt256.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/xt256.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/zenburn.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/highlight-js/zenburn.min.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-hugo/object-assign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-hugo/object-assign.js -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-hugo/themes/robot-lung.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-hugo/themes/robot-lung.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-hugo/themes/sunblind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-hugo/themes/sunblind.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/css/print/paper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/css/print/paper.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/css/print/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/css/print/pdf.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/css/reset.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/css/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/css/reveal.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/css/theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/css/theme/README.md -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/css/theme/beige.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/css/theme/beige.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/css/theme/black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/css/theme/black.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/css/theme/blood.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/css/theme/blood.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/css/theme/league.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/css/theme/league.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/css/theme/moon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/css/theme/moon.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/css/theme/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/css/theme/night.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/css/theme/serif.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/css/theme/serif.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/css/theme/simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/css/theme/simple.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/css/theme/sky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/css/theme/sky.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/css/theme/solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/css/theme/solarized.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/css/theme/white.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/css/theme/white.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/js/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/js/reveal.js -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/css/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/css/monokai.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/css/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/css/zenburn.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/font/league-gothic/LICENSE -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/font/league-gothic/league-gothic.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/LICENSE -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/font/source-sans-pro/source-sans-pro.css -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/js/html5shiv.js -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/js/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/lib/js/promise.js -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/plugin/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/plugin/highlight/highlight.js -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/plugin/markdown/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/plugin/markdown/example.html -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/plugin/markdown/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/plugin/markdown/example.md -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/plugin/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/plugin/markdown/markdown.js -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/plugin/markdown/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/plugin/markdown/marked.js -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/plugin/math/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/plugin/math/math.js -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/plugin/multiplex/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/plugin/multiplex/client.js -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/plugin/multiplex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/plugin/multiplex/index.js -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/plugin/multiplex/master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/plugin/multiplex/master.js -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/plugin/multiplex/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/plugin/multiplex/package.json -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/plugin/notes-server/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/plugin/notes-server/client.js -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/plugin/notes-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/plugin/notes-server/index.js -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/plugin/notes-server/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/plugin/notes-server/notes.html -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/plugin/notes/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/plugin/notes/notes.html -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/plugin/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/plugin/notes/notes.js -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/plugin/print-pdf/print-pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/plugin/print-pdf/print-pdf.js -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/plugin/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/plugin/search/search.js -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/plugin/zoom-js/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/static/reveal-js/plugin/zoom-js/zoom.js -------------------------------------------------------------------------------- /themes/reveal-hugo/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/theme.toml --------------------------------------------------------------------------------