UNPKG

theophile

Version:

A templating module that transforms a web page into a (Powerpoint-like) presentation

24 lines 1.26 kB
<!DOCTYPE html> <html lang="fr"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>My first document</title> <script type="module"> import Theophile from "../src/js/Theophile.js"; </script> </head> <body> <h1 style="background-color: darkorchid;">My other document (/page2.html)</h1> <p>Will be in an "intro" slide. (or not)</p> <h2 style="background-color: darkorchid;">My slide will be added (/page2.html)</h2> <p>Molestias magni eveniet porro perferendis, officia maxime ducimus quibusdam ut itaque! Voluptatum nam eius libero tempora. Ullam nam eaque magni reprehenderit repudiandae!</p> <h3 style="background-color: darkorchid;">Part of a slide (/page2.html)</h3> <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Nulla ducimus neque eaque dolor accusantium vitae magnam modi consequatur, minus voluptate quas minima nemo autem cumque laborum et eum doloribus asperiores!</p> <h2 style="background-color: darkorchid;">this slide also (/page2.html)</h2> <p>Place a table</p> <div class="th-references"> <a href="folder/page3.html">Another document as a reference</a> </div> </body> </html>