diff options
| author | Mhykol <mchaeldonald62@pm.me> | 2024-06-16 03:13:55 -0400 |
|---|---|---|
| committer | Mhykol <mchaeldonald62@pm.me> | 2024-06-16 03:13:55 -0400 |
| commit | e72a9e5911b0fcfdaf8048400b055fe03391ad30 (patch) | |
| tree | 7c289de79286181d7bb49e92b05744ef3a09bba3 /examples/layouts/header.html | |
| parent | 43fc12689e9e4a455a41ba29a34455bddf3adb10 (diff) | |
Added examples
Diffstat (limited to 'examples/layouts/header.html')
| -rw-r--r-- | examples/layouts/header.html | 27 |
1 files changed, 27 insertions, 0 deletions
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"> |
