mirror of
https://github.com/seigler/janus
synced 2025-07-27 01:36:11 +00:00
29 lines
800 B
HTML
29 lines
800 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Janus Presentation Framework</title>
|
|
<link rel="stylesheet" href="styles/main.css" charset="utf-8">
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<section>
|
|
<h1>Presentation Title</h1>
|
|
<ul>
|
|
<li janus-timeline>Point one</li>
|
|
<li janus-timeline>Point two</li>
|
|
<li janus-timeline>Point three!</li>
|
|
</ul>
|
|
</section>
|
|
<section>
|
|
<img class="cover" src="https://placekitten.com/1024/768" alt="" />
|
|
<h1>Slide Two</h1>
|
|
</section>
|
|
<section>
|
|
<h1>Slide Three</h1>
|
|
</section>
|
|
</main>
|
|
<script type="text/javascript" src="scripts/shortcut.js"></script>
|
|
<script type="text/javascript" src="scripts/app.js"></script>
|
|
</body>
|
|
</html>
|