Mercurial
view love/pdf-mcp/templates/reveal_template.html @ 71:75de5903355c
Giagantic changes that update Dowa library to be more align with stb style array and hashmap. Updated Seobeo to be caching on server side instead of file level caching. Deleted bunch of things I don't really use.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Sun, 28 Dec 2025 20:34:22 -0800 |
| parents | cf9caa4abc3e |
| children |
line wrap: on
line source
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>{{ topic }}</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.6.0/reveal.min.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.6.0/theme/moon.min.css"> <style> .reveal section img { background:none; border:none; box-shadow:none; } .reveal h1, .reveal h2 { text-align:center; } .slide-bg { background-size:cover; background-position:center; min-height:100vh; } </style> </head> <body> <div class="reveal"> <div class="slides"> <section data-background-color="#1a1a2e"> <h1>{{ topic }}</h1> <p>Generated instantly by MCP server</p> </section> {% for slide in slides %} <section data-background-image="{{ slide.image }}" class="slide-bg"> <div style="background:rgba(0,0,0,0.65); padding:40px; border-radius:20px; max-width:90%;"> {{ slide.content | safe }} </div> </section> {% endfor %} <section data-background-color="#16213e"> <h2>Thank you!</h2> </section> </div> </div> <script src="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.6.0/reveal.min.js"></script> <script> Reveal.initialize({hash:true, controls:true, progress:true, center:true}); </script> </body> </html>