diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/footer.html | 16 | ||||
-rw-r--r-- | templates/head-common.html | 8 | ||||
-rw-r--r-- | templates/nav.html | 13 |
3 files changed, 37 insertions, 0 deletions
diff --git a/templates/footer.html b/templates/footer.html new file mode 100644 index 0000000..79074d5 --- /dev/null +++ b/templates/footer.html @@ -0,0 +1,16 @@ +<div class='transflag' + title="A html rendering of the trans flag"> + <div class='blue'></div> + <div class='pink'></div> + <div class='white'></div> + <div class='pink'></div> + <div class='blue'></div> +</div> +<footer> + <p>© 2023 TheWomanInMyEye dot org - + <a id="license" rel="license external noopener noreferrer" + target="_blank" + href="https://creativecommons.org/licenses/by/4.0/">CC BY-SA 4.0</a> + unless otherwise noted.</p> +</footer> + diff --git a/templates/head-common.html b/templates/head-common.html new file mode 100644 index 0000000..c06fc18 --- /dev/null +++ b/templates/head-common.html @@ -0,0 +1,8 @@ +<meta charset="utf-8"> +<meta name="viewport" + content="width=device-width, initial-scale=1"> +<link rel="stylesheet" href="/index.css"> +<link rel="license" href="#license"> +<link rel="icon" + href="favicon.ico"> + diff --git a/templates/nav.html b/templates/nav.html new file mode 100644 index 0000000..c21e9cb --- /dev/null +++ b/templates/nav.html @@ -0,0 +1,13 @@ +<nav title="site menu"> + <ul> + <li> + <a href='/resources'>resources</a> + </li> + <li> + <a href='/about'>about</a> + </li> + <li> + <a href='/blog'>blog</a> + </li> + </ul> +</nav> |