├── themes └── reveal-hugo │ ├── .gitignore │ ├── layouts │ ├── _default │ │ ├── single.reveal.html │ │ ├── bundle.reveal.html │ │ ├── list.reveal.html │ │ ├── index.reveal.html │ │ └── baseof.reveal.html │ ├── partials │ │ ├── reveal-hugo │ │ │ ├── body.html │ │ │ ├── head.html │ │ │ ├── end.html │ │ │ └── slides.html │ │ └── layout │ │ │ ├── head.html │ │ │ ├── theme.html │ │ │ └── javascript.html │ └── shortcodes │ │ ├── frag.html │ │ ├── section.html │ │ ├── fragment.html │ │ ├── markdown.html │ │ ├── note.html │ │ └── slide.html │ ├── static │ ├── highlight-js │ │ ├── darkula.min.css │ │ ├── pojoaque.jpg │ │ ├── school-book.png │ │ ├── brown-papersq.png │ │ ├── ascetic.min.css │ │ ├── androidstudio.min.css │ │ ├── codepen-embed.min.css │ │ ├── dark.min.css │ │ ├── mono-blue.min.css │ │ ├── atelier-dune-dark.min.css │ │ ├── magula.min.css │ │ ├── vs.min.css │ │ ├── atelier-dune-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-seaside-dark.min.css │ │ ├── atelier-seaside-light.min.css │ │ ├── atelier-sulphurpool-dark.min.css │ │ ├── atelier-sulphurpool-light.min.css │ │ ├── color-brewer.min.css │ │ ├── paraiso-dark.min.css │ │ ├── paraiso-light.min.css │ │ ├── ocean.min.css │ │ ├── tomorrow.min.css │ │ ├── an-old-hope.min.css │ │ ├── kimbie.dark.min.css │ │ ├── kimbie.light.min.css │ │ ├── tomorrow-night.min.css │ │ ├── dracula.min.css │ │ ├── tomorrow-night-blue.min.css │ │ ├── tomorrow-night-bright.min.css │ │ ├── tomorrow-night-eighties.min.css │ │ ├── arta.min.css │ │ ├── ir-black.min.css │ │ ├── brown-paper.min.css │ │ ├── far.min.css │ │ ├── zenburn.min.css │ │ ├── hopscotch.min.css │ │ ├── darcula.min.css │ │ ├── github-gist.min.css │ │ ├── purebasic.min.css │ │ ├── foundation.min.css │ │ ├── gml.min.css │ │ ├── atelier-cave-dark.min.css │ │ ├── monokai.min.css │ │ ├── xt256.min.css │ │ ├── atelier-estuary-dark.min.css │ │ ├── atelier-estuary-light.min.css │ │ ├── atelier-plateau-dark.min.css │ │ ├── atelier-plateau-light.min.css │ │ ├── atelier-savanna-dark.min.css │ │ ├── atelier-savanna-light.min.css │ │ ├── pojoaque.min.css │ │ ├── atelier-cave-light.min.css │ │ ├── default.min.css │ │ ├── rainbow.min.css │ │ ├── monokai-sublime.min.css │ │ ├── solarized-dark.min.css │ │ ├── solarized-light.min.css │ │ ├── lightfair.min.css │ │ ├── school-book.min.css │ │ ├── atom-one-dark.min.css │ │ ├── atom-one-light.min.css │ │ ├── arduino-light.min.css │ │ ├── qtcreator_dark.min.css │ │ ├── qtcreator_light.min.css │ │ ├── googlecode.min.css │ │ ├── docco.min.css │ │ ├── obsidian.min.css │ │ ├── shades-of-purple.min.css │ │ ├── routeros.min.css │ │ ├── github.min.css │ │ ├── hybrid.min.css │ │ ├── idea.min.css │ │ ├── sunburst.min.css │ │ ├── xcode.min.css │ │ ├── railscasts.min.css │ │ ├── isbl-editor-light.min.css │ │ ├── a11y-dark.min.css │ │ ├── a11y-light.min.css │ │ ├── isbl-editor-dark.min.css │ │ ├── gruvbox-dark.min.css │ │ ├── gruvbox-light.min.css │ │ ├── gradient-dark.min.css │ │ ├── vs2015.min.css │ │ ├── atom-one-dark-reasonable.min.css │ │ ├── agate.min.css │ │ ├── night-owl.min.css │ │ ├── grayscale.min.css │ │ └── nord.min.css │ ├── reveal-js │ │ ├── lib │ │ │ ├── font │ │ │ │ ├── league-gothic │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── league-gothic.eot │ │ │ │ │ ├── league-gothic.ttf │ │ │ │ │ ├── league-gothic.woff │ │ │ │ │ └── league-gothic.css │ │ │ │ └── source-sans-pro │ │ │ │ │ ├── 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 │ │ │ └── css │ │ │ │ ├── monokai.css │ │ │ │ └── zenburn.css │ │ ├── plugin │ │ │ ├── multiplex │ │ │ │ ├── client.js │ │ │ │ ├── package.json │ │ │ │ ├── master.js │ │ │ │ └── index.js │ │ │ ├── markdown │ │ │ │ └── example.md │ │ │ ├── notes-server │ │ │ │ ├── index.js │ │ │ │ └── client.js │ │ │ ├── print-pdf │ │ │ │ └── print-pdf.js │ │ │ └── math │ │ │ │ └── math.js │ │ └── css │ │ │ ├── reset.css │ │ │ ├── theme │ │ │ └── README.md │ │ │ └── print │ │ │ └── pdf.css │ └── reveal-hugo │ │ └── object-assign.js │ ├── images │ ├── tn.png │ ├── screenshot.png │ └── reveal-hugo-hello-world.png │ ├── exampleSite │ ├── layouts │ │ └── partials │ │ │ ├── plugin-example │ │ │ └── reveal-hugo │ │ │ │ └── head.html │ │ │ ├── home │ │ │ └── reveal-hugo │ │ │ │ ├── end.html │ │ │ │ ├── body.html │ │ │ │ └── head.html │ │ │ ├── highlightjs-linenumbers-example │ │ │ └── reveal-hugo │ │ │ │ └── body.html │ │ │ └── logo-example │ │ │ └── reveal-hugo │ │ │ └── body.html │ ├── static │ │ ├── favicon.ico │ │ ├── js │ │ │ └── custom.js │ │ ├── _redirects │ │ ├── css │ │ │ └── custom.css │ │ ├── images │ │ │ └── alex-litvin-790876-unsplash.jpg │ │ └── plugin │ │ │ └── gallery │ │ │ ├── gallery.css │ │ │ └── gallery.plugin.js │ ├── content │ │ ├── section-example │ │ │ ├── presentation.md │ │ │ └── _index.md │ │ ├── plugin-example │ │ │ ├── sample1.jpg │ │ │ ├── sample2.jpg │ │ │ ├── sample3.jpg │ │ │ └── _index.md │ │ ├── logo-example │ │ │ ├── github-logo.png │ │ │ └── _index.md │ │ ├── home │ │ │ ├── shortcodes │ │ │ │ ├── introduction.md │ │ │ │ ├── section.md │ │ │ │ ├── markdown.md │ │ │ │ ├── fragment.md │ │ │ │ └── other.md │ │ │ ├── features.md │ │ │ ├── resources.md │ │ │ └── usage.md │ │ ├── template-example │ │ │ ├── continued.md │ │ │ └── _index.md │ │ ├── bundle-example │ │ │ ├── continued.md │ │ │ └── index.md │ │ ├── _index.md │ │ ├── extending-layout-example │ │ │ └── _index.md │ │ ├── custom-theme-example │ │ │ └── _index.md │ │ ├── hugo-hl-example │ │ │ └── _index.md │ │ └── highlightjs-linenumbers-example │ │ │ └── _index.md │ ├── resources │ │ └── _gen │ │ │ └── assets │ │ │ └── scss │ │ │ ├── custom-theme.scss_b53257441d1f91bc860cc5c6b2e22276.json │ │ │ └── custom-theme.scss_b53257441d1f91bc860cc5c6b2e22276.content │ ├── .forestry │ │ └── settings.yml │ ├── data │ │ ├── common │ │ │ └── nested.toml │ │ └── home.toml │ ├── assets │ │ └── custom-theme.scss │ └── config.toml │ ├── package.json │ ├── netlify.toml │ ├── theme.toml │ ├── assets │ └── reveal-js │ │ └── css │ │ └── theme │ │ ├── source │ │ ├── night.scss │ │ ├── serif.scss │ │ ├── league.scss │ │ ├── sky.scss │ │ ├── white.scss │ │ ├── beige.scss │ │ ├── black.scss │ │ ├── simple.scss │ │ ├── moon.scss │ │ ├── solarized.scss │ │ └── blood.scss │ │ └── template │ │ ├── settings.scss │ │ └── mixins.scss │ ├── LICENSE │ ├── CONTRIBUTING.md │ └── CODE_OF_CONDUCT.md ├── static ├── favicon.ico └── images │ └── icon.png ├── archetypes └── default.md ├── layouts ├── shortcodes │ ├── g.html │ ├── grid.html │ ├── talk-link.html │ └── social.html └── partials │ └── reveal-hugo │ └── body.html ├── README.md ├── BUILDING.md ├── .github └── workflows │ └── gh-pages.yml ├── config.toml ├── .gitignore ├── LICENSE └── content └── _index.md /themes/reveal-hugo/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | public 3 | -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/_default/single.reveal.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/reveal-hugo/static/highlight-js/darkula.min.css: -------------------------------------------------------------------------------- 1 | @import url('darcula.css'); -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | date: {{ .Date }} 4 | draft: true 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /layouts/shortcodes/g.html: -------------------------------------------------------------------------------- 1 |
2 | {{ printf "%s" .Inner | safeHTML }} 3 |
4 | -------------------------------------------------------------------------------- /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/partials/reveal-hugo/body.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/partials/reveal-hugo/head.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/shortcodes/grid.html: -------------------------------------------------------------------------------- 1 |
2 | {{ printf "%s" .Inner | safeHTML }} 3 |
4 | -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/partials/reveal-hugo/end.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/layouts/partials/plugin-example/reveal-hugo/head.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/reveal-hugo/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/images/screenshot.png -------------------------------------------------------------------------------- /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/js/custom.js: -------------------------------------------------------------------------------- 1 | document.getElementById("customjs").addEventListener("click", function(){ 2 | this.className += " customjs" 3 | }) -------------------------------------------------------------------------------- /themes/reveal-hugo/static/reveal-js/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /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/exampleSite/content/section-example/presentation.md: -------------------------------------------------------------------------------- 1 | +++ 2 | weight = 10 3 | +++ 4 | 5 | # Including... 6 | 7 | Content from files like this one. 8 | 9 | -------------------------------------------------------------------------------- /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/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/exampleSite/static/_redirects: -------------------------------------------------------------------------------- 1 | # Redirect default Netlify subdomain to primary domain 2 | https://reveal-hugo.netlify.com/* https://reveal-hugo.dzello.com/:splat 301! -------------------------------------------------------------------------------- /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/layouts/shortcodes/frag.html: -------------------------------------------------------------------------------- 1 | 3 | {{ .Get "c" }} 4 | -------------------------------------------------------------------------------- /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/logo-example/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjpfan/slides-template-hugo/HEAD/themes/reveal-hugo/exampleSite/content/logo-example/github-logo.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Slide Template using Hugo + Reveal 2 | 3 | [Link to slides](https://thomasjpfan.github.io/slides-template-hugo/) 4 | 5 | ## License 6 | 7 | This repo is under the [MIT License](LICENSE). 8 | -------------------------------------------------------------------------------- /layouts/shortcodes/talk-link.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | This talk on Github: thomasjpfan/{{ .Get 0 }} 4 | -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/layouts/partials/home/reveal-hugo/end.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/static/css/custom.css: -------------------------------------------------------------------------------- 1 | .custom em{ 2 | color: #a32843 3 | } 4 | 5 | .custom code{ 6 | color: #ff2f86 7 | } 8 | 9 | .customjs { 10 | background-color: #504e9e 11 | } -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/_default/bundle.reveal.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ partial "reveal-hugo/slides" (slice .Page) }} 3 | {{ partial "reveal-hugo/slides" (.Resources.ByType "page") }} 4 | {{ end }} 5 | -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/_default/list.reveal.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ partial "reveal-hugo/slides" (slice .Page) }} 3 | {{ partial "reveal-hugo/slides" (where .Pages "Kind" "page") }} 4 | {{ end }} 5 | -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/layouts/partials/highlightjs-linenumbers-example/reveal-hugo/body.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /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/layouts/shortcodes/section.html: -------------------------------------------------------------------------------- 1 | {{/* Render .Inner before processing the shortcode. */}} 2 | {{ $_hugo_config := `{ "version": 1 }` }} 3 |
4 | {{ .Inner }} 5 |
-------------------------------------------------------------------------------- /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/layouts/_default/index.reveal.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ partial "reveal-hugo/slides" (slice .Page) }} 3 | {{ partial "reveal-hugo/slides" (where .Site.RegularPages "Type" "home") }} 4 | {{ end }} 5 | -------------------------------------------------------------------------------- /themes/reveal-hugo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "scripts": { 3 | "start": "hugo server -s exampleSite", 4 | "build": "hugo -s exampleSite" 5 | }, 6 | "dependencies": { 7 | "npm": "^6.14.6" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /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/netlify.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | command = "hugo -b $URL -s exampleSite" 3 | publish = "exampleSite/public" 4 | 5 | [context.production.environment] 6 | HUGO_VERSION = "0.65.3" 7 | 8 | [context.deploy-preview.environment] 9 | HUGO_VERSION = "0.65.3" 10 | -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/layouts/partials/logo-example/reveal-hugo/body.html: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/shortcodes/fragment.html: -------------------------------------------------------------------------------- 1 | {{/* Render .Inner before processing the shortcode. */}} 2 | {{ $_hugo_config := `{ "version": 1 }` }} 3 | {{ .Inner }} 4 | 5 | -------------------------------------------------------------------------------- /themes/reveal-hugo/exampleSite/resources/_gen/assets/scss/custom-theme.scss_b53257441d1f91bc860cc5c6b2e22276.json: -------------------------------------------------------------------------------- 1 | {"Target":"_.min.debb4e7703d02f02d0510843db28b0aecb70d4c1394da8410aac6d3593ceec29.css","MediaType":"text/css","Data":{"Integrity":"sha256-3rtOdwPQLwLQUQhD2yiwrstw1ME5TahBCqxtNZPO7Ck="}} -------------------------------------------------------------------------------- /layouts/shortcodes/social.html: -------------------------------------------------------------------------------- 1 |

@thomasjpfan

2 | 3 | 4 | -------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/shortcodes/markdown.html: -------------------------------------------------------------------------------- 1 |
5 | 8 |
-------------------------------------------------------------------------------- /themes/reveal-hugo/layouts/shortcodes/note.html: -------------------------------------------------------------------------------- 1 | {{/* Markdown is not rendered inside