I have several reveal.js presentations, and I want to host them online so that I can access them from anywhere, rather than just on my laptop. I also host a blog site using the static engine Hugo, which serves up html pages. Hugo has the concept of “pages”: currently one page contains the blog posts, another one has a little bit about me, and another lists all the blog tags. It would be easy to add a page called “presentations”.
My presentations include text, mathematics with MathJax, and various interactive diagrams included as iframes. It would be very nice to include everything in a single html file, with reveal.js material from a CDN such as
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/reveal.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/reveal.min.css" rel="stylesheet">
I also have a few local files, such as my own theme. I don’t know whether the files above include plugins (for mathematics, menus, highlighting) or whether they have to included as well.
I appreciate that questions similar to this have been asked before, but most seem to be several years old, or involve github, which I’d rather avoid, since every time I attempt to use it I get caught up in an almighty tangle and confusion. Anyway, I don’t need version control or sharing, just an online presence.
Anyway, I’d be happy of any advice!