summaryrefslogtreecommitdiff
path: root/examples/layouts
diff options
context:
space:
mode:
authorMhykol <mchaeldonald62@pm.me>2024-06-16 03:13:55 -0400
committerMhykol <mchaeldonald62@pm.me>2024-06-16 03:13:55 -0400
commite72a9e5911b0fcfdaf8048400b055fe03391ad30 (patch)
tree7c289de79286181d7bb49e92b05744ef3a09bba3 /examples/layouts
parent43fc12689e9e4a455a41ba29a34455bddf3adb10 (diff)
Added examples
Diffstat (limited to 'examples/layouts')
-rw-r--r--examples/layouts/footer.html15
-rw-r--r--examples/layouts/header.html27
-rw-r--r--examples/layouts/loading.html12
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>&#10005;</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>