diff options
Diffstat (limited to 'examples/layouts')
| -rw-r--r-- | examples/layouts/footer.html | 15 | ||||
| -rw-r--r-- | examples/layouts/header.html | 27 | ||||
| -rw-r--r-- | examples/layouts/loading.html | 12 |
3 files changed, 54 insertions, 0 deletions
diff --git a/examples/layouts/footer.html b/examples/layouts/footer.html new file mode 100644 index 0000000..9b2c673 --- /dev/null +++ b/examples/layouts/footer.html @@ -0,0 +1,15 @@ + </section> + <section id="footer"> + <div class="copied"> + <p>Copied to clipboard</p> + </div> + <div class="links"> + <p>Email: <a href='mailto:mchaeldonald62@pm.me'>mchaeldonald62@pm.me</a></p> + <p>Monero: <span class='footer-links'>89dARfwUGJNByHeir8bpCM4YJS2cTz58DNvu9fad1bpg7bfZs2H1QwtJpFghhJJatzRo8rnrE8AH5CAXbQHUpTp5FujsU1h</span></p> + <p>Bitcoin: <span class='footer-links'>bc1qplmr9wx7ahcna5zmwlhhl5zcgs8n5nuxp74apw</span></p> + </div> + </section> + <script src="/js/purify.js"></script> + <script src="/js/main.js"></script> + </body> +</html> diff --git a/examples/layouts/header.html b/examples/layouts/header.html new file mode 100644 index 0000000..165133b --- /dev/null +++ b/examples/layouts/header.html @@ -0,0 +1,27 @@ +<!DOCTYPE html> +<html> + <head> + <title>Welcome to my website!</title> + <link rel="stylesheet" href="/css/main.css"/> + <link rel="stylesheet" href="/css/prism.css"> + <meta name="description" content="Welcome to my website!"> + <meta name="keywords" content=""> + </head> + <body> + <section id="header"> + <nav class="menulist" id="menu-list"> + <a class="list" href="/">Home</a> + <a class="list" href="/about">About</a> + <a class="list" href="/blog">Blog</a> + <a class="list" href="https://git.fatalmatrix.xyz/">Git Server</a> + <div class="close" id="close"> + <p>✕</p> + </div> + </nav> + <div class="menuIcon" id="menu-icon"> + <div></div> + <div></div> + <div></div> + </div> + </section> + <section id="main"> diff --git a/examples/layouts/loading.html b/examples/layouts/loading.html new file mode 100644 index 0000000..e8157e7 --- /dev/null +++ b/examples/layouts/loading.html @@ -0,0 +1,12 @@ + <section id="loading"> + <div class="main"> + <div></div> + <div></div> + <div></div> + <div></div> + <div></div> + <div></div> + <div></div> + <div></div> + </div> + </section> |
