summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDustin Walker <dustin.walker@email.wsu.edu>2022-02-03 22:41:34 -0500
committerDustin Walker <dustin.walker@email.wsu.edu>2022-02-03 22:41:34 -0500
commit4f2308ca76c26c2be9d3934a79e6bc2b5d3b1306 (patch)
tree6e20003ad2f8a179cef16a5fee74ebd2e681845a
parent70e1fcf595c2bd350672e31803d4b0336366291b (diff)
helen prototype downloads
-rw-r--r--helen/helen_linux_x64.7zbin0 -> 21354045 bytes
-rw-r--r--helen/helen_win_x64.7zbin0 -> 22807699 bytes
-rw-r--r--img/HPR.png (renamed from HPR.png)bin17321 -> 17321 bytes
-rw-r--r--index.html27
-rw-r--r--style.css13
5 files changed, 32 insertions, 8 deletions
diff --git a/helen/helen_linux_x64.7z b/helen/helen_linux_x64.7z
new file mode 100644
index 0000000..e321dfd
--- /dev/null
+++ b/helen/helen_linux_x64.7z
Binary files differ
diff --git a/helen/helen_win_x64.7z b/helen/helen_win_x64.7z
new file mode 100644
index 0000000..18e56f2
--- /dev/null
+++ b/helen/helen_win_x64.7z
Binary files differ
diff --git a/HPR.png b/img/HPR.png
index a3ca05c..a3ca05c 100644
--- a/HPR.png
+++ b/img/HPR.png
Binary files differ
diff --git a/index.html b/index.html
index 8e82a97..0a4c601 100644
--- a/index.html
+++ b/index.html
@@ -10,17 +10,28 @@
</head>
<body>
<main>
- <img class="icon" src="HPR.png" alt="Heilich Pennsylfaanisch Reich" title="Heilich Pennsylfaanisch Reich"/>
+ <img class="icon" src="img/HPR.png" alt="Heilich Pennsylfaanisch Reich" title="Heilich Pennsylfaanisch Reich"/>
<p>This website runs under a self hosted raspberry pi 3, configured under the guidance of <a href="https://landchad.net">LandChad.net</a>. Go here to learn more. Currently under construction, more content will be added at a later date.
- <h2>Links</h2>
- <ul>
- <li><a href="https://git.dwalker.xyz">self hosted git</a></li>
- <li><a href="https://lukesmith.xyz">Luke Smith</a></li>
- <li><a href="https://wttr.in">Weather</a></li>
- <li>Recipes (soon™)</li>
- </ul>
+ <div class="row">
+ <div class="column">
+ <h2>Links</h2>
+ <ul>
+ <li><a href="https://git.dwalker.xyz">self hosted git</a></li>
+ <li><a href="https://lukesmith.xyz">Luke Smith</a></li>
+ <li><a href="https://wttr.in">Weather</a></li>
+ <li>Recipes (soon™)</li>
+ </ul>
+ </div>
+ <div class="column">
+ <h2>Downloads</h2>
+ <ul>
+ <li><a href="helen/helen_win_x64.7z" download>Helen Windows x64</a></li>
+ <li><a href="helen/helen_linux_x64.7z" download>Helen Linux x64</a></li>
+ </ul>
+ </div>
+ </div>
<footer>
<a href="https://landchad.net"><img src="img/landchad.gif" alt="LandChad.net" title="LandChad.net"></a>
diff --git a/style.css b/style.css
index 76a7f47..f216881 100644
--- a/style.css
+++ b/style.css
@@ -34,3 +34,16 @@ a {
footer {
text-align: center;
}
+
+.column {
+ box-sizing: border-box;
+ float: left;
+ width: 50%;
+ padding: 10px;
+}
+
+.row:after {
+ content: "";
+ display: table;
+ clear: both;
+}