diff options
author | Adam T. Carpenter <atc@53hor.net> | 2024-06-09 15:48:41 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2024-06-09 15:48:41 -0400 |
commit | a4ab46cc54841678094d57c04942fc8b623fb98d (patch) | |
tree | 1585eb10f613fd4612da79f71bc06ff940518d9e /brochure/index.php | |
parent | d7c7dc8450b165ec5acd5408b061a7c918ab8f1b (diff) | |
download | carpentertutoring-a4ab46cc54841678094d57c04942fc8b623fb98d.tar.xz carpentertutoring-a4ab46cc54841678094d57c04942fc8b623fb98d.zip |
feat: add interactive brochure
Diffstat (limited to 'brochure/index.php')
-rw-r--r-- | brochure/index.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/brochure/index.php b/brochure/index.php new file mode 100644 index 0000000..237266d --- /dev/null +++ b/brochure/index.php @@ -0,0 +1,18 @@ +<?php include('../header.php'); ?> +<section class="banner"> + <h1>Interactive brochure</h1> +</section> + +<section class="quiet"> +<p>Click on pages to fold and unfold and use the <em>Flip</em> button to toggle front and back.</p> + +<?php include('./brochure.html')?> + +</section> + +<section></section> + +<script> +<?php include('./brochure.js')?> +</script> +<?php include('../footer.php'); ?> |