#+TITLE: Shower Template
#+DATE: <2024-02-18 Sun>
#+KEYWORDS: emacs, org mode, shower

#+OPTIONS: toc:nil title:nil html-style:nil html-postamble:nil html-preamble:nil tags:nil num:nil

#+HTML_HEAD: <link rel="stylesheet" href="[shower location]/shower/shower/themes/ribbon/styles/styles.css">
#+HTML_HEAD: <script src="[shower location]/shower/shower/shower.js"></script>
#+HTML_HEAD: <style> div { display: contents; } </style>

#+HTML_CONTAINER: section

#+BEGIN_EXPORT HTML
    <header class="caption">
        <h1>Write Slides in Org Mode and export to Shower Presentation Engine</h1>
        <p>Isn't that amazing!</p>
    </header>
#+END_EXPORT

*                                                                     :title:
   
   #+ATTR_HTML: :class cover
   https://www.thewowstyle.com/wp-content/uploads/2015/02/landscape-photography-image-free-wallpaper.jpg


* Slide 1

  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
  incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis
  nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
  consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
  cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
  proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
  language to the markup required by Shower CSS.

#+BEGIN_EXPORT html
<script> 
  document.body.classList.add('shower'); 
  document.querySelectorAll('section').forEach(function(section) { section.classList.add('slide'); });
  document.querySelectorAll('.inner-navigation ul li').forEach(function(section) { section.classList.add('next'); });
</script>
#+END_EXPORT