aboutsummaryrefslogtreecommitdiffstats
path: root/templates/slides.html
diff options
context:
space:
mode:
authorAhmed <git@gumx.cc>2026-06-01 22:19:27 +0300
committerAhmed <git@gumx.cc>2026-06-01 22:19:27 +0300
commitae72b8f9976a1c0cca66ff4cb31eadf311c677e7 (patch)
tree532e48d085bd0ea48265f2bd262df8856dd8340f /templates/slides.html
init: moved to own site
Diffstat (limited to 'templates/slides.html')
-rw-r--r--templates/slides.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/templates/slides.html b/templates/slides.html
new file mode 100644
index 0000000..a553a73
--- /dev/null
+++ b/templates/slides.html
@@ -0,0 +1,31 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width,initial-scale=1" />
+ <meta name="author" content="Ahmed (gumx) Alaa" />
+ <title>{{TITLE}}</title>
+ <link rel="stylesheet" href="/styles/reveal.css" />
+ <link rel="stylesheet" href="/styles/reset.css" />
+ <link rel="stylesheet" href="/styles/{{THEME}}.css" />
+ <link rel="stylesheet" href="/styles/monokai.css" />
+ <link href="data:," rel="icon">
+ </head>
+ <body>
+ <div class="reveal">
+ <div class="slides">
+ {{{SLIDES_CONTENT}}}
+ </div>
+ </div>
+ <script src="/scripts/reveal.js"></script>
+ <script src="/scripts/markdown.js"></script>
+ <script src="/scripts/notes.js"></script>
+ <script src="/scripts/highlight.js"></script>
+ <script>
+ Reveal.initialize({
+ hash: true,
+ plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
+ });
+ </script>
+ </body>
+</html>