summaryrefslogtreecommitdiff
path: root/entries
diff options
context:
space:
mode:
authorSteph Enders <steph@senders.io>2023-06-21 22:56:23 -0400
committerSteph Enders <steph@senders.io>2023-06-21 22:56:23 -0400
commit06bd3d7999501ee178826190fbd3b4a9e28cb6fa (patch)
tree86b181a3162581df70269439793df0810ac463ed /entries
parent80c1478e5af73f22cd26b667a371d4fb182647f7 (diff)
Create simple template script for deployment
Diffstat (limited to 'entries')
-rw-r--r--entries/error.html23
-rw-r--r--entries/index.html38
2 files changed, 61 insertions, 0 deletions
diff --git a/entries/error.html b/entries/error.html
new file mode 100644
index 0000000..fbab7e9
--- /dev/null
+++ b/entries/error.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ {head-common}
+ <title>The Woman in my Eye</title>
+ <meta name="description"
+ content="Page request not found">
+</head>
+<body>
+ <header>
+ <h1>The page requested is not found!</h1>
+ </header>
+ {nav}
+ <main>
+ <article>
+ <h2>Oops, someone screwed up?</h2>
+ <p>The page you&#39;ve requested does not exist. Sorry about that! Please
+ <a href="/">return to the homepage</a>.</p>
+ </article>
+ </main>
+ {footer}
+</body>
+</html>
diff --git a/entries/index.html b/entries/index.html
new file mode 100644
index 0000000..16f9de7
--- /dev/null
+++ b/entries/index.html
@@ -0,0 +1,38 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <title>The Woman in my Eye</title>
+ {head-common}
+ <link rel="me"
+ href="https://tech.lgbt/@senders">
+ <meta name="description"
+ content=
+ "The woman in your eye is a transgender blog from the perspective of the author. She tries her best to provide information to hopefully help or entertain her readers who may also be struggling with their gender identity">
+</head>
+<body>
+ <header>
+ <h1>Hello, the Woman in my Eye</h1>
+ </header>
+ {nav}
+ <main>
+ <article>
+ <h2>Introduction</h2>
+ <p>Welcome to my blog. My name is Steph and I am a 30 something
+ transgender woman. This blog focuses on my journey transitioning and
+ discovering my gender. I am not a medical professional or an expert on
+ the subject. I am simply a girl trying to share her story in the hopes it
+ might actually help someone else find themselves...or entertain; either
+ works!</p>
+ </article>
+ <article>
+ <h2>Notice: I am barely setup!</h2>
+ <p>Hey, thanks for visiting my website. I decided to take on this
+ initiative basically right before I had to leave my house for a few days.
+ So hopefully I can get this up and running soon after. For posterity I
+ wrote this on <time datetime="2023-06-22T01:34:00Z">June 21st,
+ 2023</time>, so when you&#39;re seeing this in 2030 we can all laugh.</p>
+ </article>
+ </main>
+ {footer}
+</body>
+</html>