Initial commit

main
Jerry Aldrich 5 years ago
commit af8c152470
  1. 9
      README.md
  2. 46
      index.html

@ -0,0 +1,9 @@
# blog.jerryaldrichiii.com
## Running locally
docker run -it --rm \
-v $(pwd)/index.html:/srv/http/index.html \
-e LIGHTTPD_INDEX_FILE=index.html
-p 8080:8080 \
jerryaldrichiii/simple-web-server

@ -0,0 +1,46 @@
<!DOCTYPE HTML>
<html>
<head>
<title>blog.jerryaldrichiii.com</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="Description" content="blog.jerryaldrichiii.com">
<style>
body {
background-color: black;
color: #00FF00;
text-align: center;
font: calc(0.40em + 1vmin) monospace;
}
#content {
width: 60ch;
margin: auto;
}
p {
text-align: left;
}
</style>
</head>
<body>
<div id=content>
<h1>#NoTechForICE</h1>
<p>
If you're coming here for Chef info, you've come to the
wrong place.
<br><br>
In 2019, Chef chose to renew their contract with U.S.
Immigration and Customs Enforcement (ICE) despite
significant internal protests.
<br><br>
This decision (along with several others) ultimately lead to
me and several others voluntarily terminating our employment
with them that year.
<br><br>
I have plans to bring this blog back with a focus on
personal projects and potentially guides for migrating off
Chef, but for now it has been replaced with this
placeholder.
</p>
</div>
<body>
</html>
Loading…
Cancel
Save