diff options
author | metamuffin <metamuffin@disroot.org> | 2025-10-02 19:14:17 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-10-02 19:14:17 +0200 |
commit | 23871d5aadcaa4d01b7c46cb951854572940414d (patch) | |
tree | 9a3f0490675642a5b76bdda8f44f2e75b469046c /template.html | |
parent | fbc308f96dca2854bc462e6fee412b5dc35b6c3c (diff) | |
download | metamuffin-website-23871d5aadcaa4d01b7c46cb951854572940414d.tar metamuffin-website-23871d5aadcaa4d01b7c46cb951854572940414d.tar.bz2 metamuffin-website-23871d5aadcaa4d01b7c46cb951854572940414d.tar.zst |
Rewrite
Diffstat (limited to 'template.html')
-rw-r--r-- | template.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/template.html b/template.html new file mode 100644 index 0000000..f1d0d48 --- /dev/null +++ b/template.html @@ -0,0 +1,51 @@ +<html lang="en"> + <head> + <title>TITLE - metamuffin's website</title> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <meta name="description" content="metamuffin's personal website" /> + <link rel="stylesheet" href="/style.css" /> + </head> + <body> + <header> + <img + src="https://s.metamuffin.org/avatar/default-512.webp" + alt="a muffin with purple glowing regions where a 3d vornoi function using chebychev distance exceeds some threshold" + align="left" + height="80" + width="80" + hspace="10" + /> + <h1>metamuffin's personal website</h1> + <nav> + <a href="/about.html">About</a> + <a href="/blog.html">Blog</a> + <a href="/projects.html">Projects</a> + <a href="/contact.html">Contact</a> + <a href="https://codeberg.org/metamuffin">Codeberg</a> + </nav> + <hr /> + </header> + <article> + CONTENT + </article> + <footer> + <hr /> + <p> + metamuffin's website; version TODO; sources available on + <a href="https://codeberg.org/metamuffin/metamuffin-website" + >codeberg</a> + </p> + <hr /> + <iframe + loading="lazy" + src="https://adservices.metamuffin.org/v1/embed?s=metamuffin.org" + style="width: 728px; height: 90px; border: none" + ></iframe> + <iframe + loading="lazy" + src="https://john.citrons.xyz/embed?ref=metamuffin.org" + style="width: 732px; height: 94px; border: none" + ></iframe> + </footer> + </body> +</html> |