diff options
author | Steph Enders <steph@senders.io> | 2023-06-27 12:37:39 -0400 |
---|---|---|
committer | Steph Enders <steph@senders.io> | 2023-06-27 12:37:39 -0400 |
commit | 8734bb597ef1074645f22f6cbe0445c9dd12d434 (patch) | |
tree | 22e994a298d42498e97ebf498bcdd78aea32f689 /pages/blog.html | |
parent | 3f0a43eaee4b511c3ca134425f0958dd6bd8435c (diff) |
Publish blog and first entry
Write up my first entry - all signs point to her
Diffstat (limited to 'pages/blog.html')
-rw-r--r-- | pages/blog.html | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/pages/blog.html b/pages/blog.html new file mode 100644 index 0000000..b77e5ad --- /dev/null +++ b/pages/blog.html @@ -0,0 +1,49 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <title>The Woman in my Eye's Blog</title> + {head-common} + <meta name="description" + content="Blog entries from the woman in my eye."> +</head> +<body> + <header> + <h1>The Woman in my Eye's Blog</h1> + </header> + <nav title="site menu"> + <ul> + <li> + <a href='/'>home</a> + </li> + <li> + <a href='/resources'>resources</a> + </li> + <li> + <a href='/about'>about</a> + </li> + </ul> + </nav> + <main> + <article> + <h2>Info</h2> + <p>Each entry is available on RSS as well. Check it out at: + <a href="/blog/feed.rss" rel="noopener" target="_blank"> + /blog/feed.rss + </a>. This will contain each of the entries listed below! + </p> + </article> + <article> + <h2>Entries</h2> + <ul> + <li> + <a href="/blog/all-signs-point-to-her.html"> + <time datetime="2023-06-27">2023-06-27</time> + - All signs point to her + </a> + </li> + <!-- NEXT --> + </article> + </main> + {footer} +</body> +</html> |