start status page

This commit is contained in:
2025-07-17 19:31:19 -05:00
parent 9bc0eb1ce5
commit 34e5512a8d
6 changed files with 66 additions and 11 deletions

View File

@@ -105,6 +105,20 @@ a, a p {
text-decoration: none; text-decoration: none;
} }
table {
color: lightgray;
border-collapse: collapse;
}
th, td {
border-right: dotted 1px lightgray;
padding: 0 1em;
}
tr {
border: solid 1px lightgray;
}
.transparent { .transparent {
opacity: 0 !important; opacity: 0 !important;
} }

View File

@@ -5,6 +5,12 @@
"description": "Andrew Simonson's Digital Portfolio home", "description": "Andrew Simonson's Digital Portfolio home",
"canonical": "/" "canonical": "/"
}, },
"status": {
"template": "status.html",
"title":"Andrew Simonson - Status Page",
"description": "Status page for my services",
"canonical": "/status"
},
"projects": { "projects": {
"template": "projects.html", "template": "projects.html",
"title": "Andrew Simonson - Projects", "title": "Andrew Simonson - Projects",

View File

@@ -85,11 +85,11 @@
<div onClick="goto('home')" class="navElement"> <div onClick="goto('home')" class="navElement">
<p>Home</p> <p>Home</p>
</div> </div>
<a href="Resume_Simonson_Andrew.pdf" target="_blank" class="navElement"> <div onclick="goto('status')" class="navElement">
<span>Resume</span> <p>Status</p>
</a> </div>
<div onclick="goto('projects')" class="navElement"> <div onclick="goto('projects')" class="navElement">
<p>Projects</p> <p>Work</p>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -34,7 +34,7 @@
I'm at it: I'm at it:
</p> </p>
<ul> <ul>
<li>Wicked Wizard of the Well</li> <li>Wicked Wizard of the West</li>
<li>Brown Belt Fucker Arounder, Black Belt Finder Outer</li> <li>Brown Belt Fucker Arounder, Black Belt Finder Outer</li>
<li>Hater of Bloat, Enemy of Node.js</li> <li>Hater of Bloat, Enemy of Node.js</li>
<li>Creator and Harnesser of Energy</li> <li>Creator and Harnesser of Energy</li>

View File

@@ -1,13 +1,9 @@
{% block content %} {% block content %}
<div class="foreground"></div> <div class="foreground"></div>
<div class="foregroundContent"> <div class="foregroundContent">
<div data-aos="fade-up">
<h2 class="concentratedHead">Projects</h2>
</div>
<div class="flex equalitems vertOnMobile"> <div class="flex equalitems vertOnMobile">
<div> <div>
<h2>About Me</h2> <h2 class="concentratedHead">About Me</h2>
<p> <p>
I'm Andrew Simonson<!--, CEO of the anti-thermodynamics syndicate.-->, I'm Andrew Simonson<!--, CEO of the anti-thermodynamics syndicate.-->,
a <strong>Data Scientist at Ecolab</strong> and a graduate Data a <strong>Data Scientist at Ecolab</strong> and a graduate Data
@@ -32,6 +28,11 @@
of unprofessional development and I swear by this form of of unprofessional development and I swear by this form of
learning. learning.
</p> </p>
<h3 class='concentratedHead'>
I also have a
<a href="Resume_Simonson_Andrew.pdf" target="_blank">resume</a>
for some reason.
</h3>
</div> </div>
<div id="skills"> <div id="skills">
<h2 id="skillstag">Skills</h2> <h2 id="skillstag">Skills</h2>
@@ -41,7 +42,7 @@
</div> </div>
<br /> <br />
<h2>Projects</h2> <h2 class="concentratedHead">Projects</h2>
<!-- > <!-- >
<div class="checkbox-wrapper"> <div class="checkbox-wrapper">
<div class="flex start"> <div class="flex start">

34
src/templates/status.html Normal file
View File

@@ -0,0 +1,34 @@
{% block content %}
<div class="foreground"></div>
<div class="foregroundContent">
<h2 class='concentratedHead'>Status Page</h2>
<h4>Page under construction</h4>
<table>
<tr>
<th>Host</th>
<th>Service(s)</th>
<th>Status</th>
</tr>
<tr>
<td>LC lemp</td>
<td>Portfolio Website</td>
<td></td>
</tr>
<tr>
<td>LC lemp</td>
<td>hotspots.asimonson.com</td>
<td></td>
</tr>
<tr>
<td>LC Antietam</td>
<td>gatorway</td>
<td>Unknown</td>
</tr>
<tr>
<td>CSH K8s Cluster</td>
<td>slate.csh.rit.edu</td>
<td></td>
</tr>
</table>
</div>
{% endblock %}