commit dc1000c977e2ef1a5c97ac52ffbd3aa99d7f3187
Author: alex wennerberg <awennerb@twitch.tv>
Date: Wed, 11 Jan 2023 17:11:54 -0800
initial commit
Diffstat:
14 files changed, 99 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -0,0 +1,2 @@
+_site
+a.out
diff --git a/README.md b/README.md
@@ -0,0 +1,5 @@
+# alex's site and generator
+
+uses smu
+
+https://github.com/Gottox/smu
diff --git a/build.sh b/build.sh
@@ -0,0 +1,13 @@
+for i in ./src/*; do
+ if [[ $i == *.md ]]
+ then
+ a=`basename ${i%.*}`
+ fn=./_site/$a.html
+ cat header.html > $fn
+ smu $i >> $fn
+ cat footer.html >> $fn
+ else
+ b=`basename $i`
+ cp $i _site/$b;
+ fi
+done
diff --git a/deploy.sh b/deploy.sh
@@ -0,0 +1 @@
+scp _site/* alex@alexwennerberg.com:/www/sale/
diff --git a/footer.html b/footer.html
@@ -0,0 +1,7 @@
+<a href="index.html">🌘 home</a>
+<hr>
+<p>
+<marquee>Copyright 2023 Wennerberg Digital Services</marquee>
+</p>
+</body>
+</html>
diff --git a/header.html b/header.html
@@ -0,0 +1,6 @@
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width">
+ <link rel="stylesheet" type="text/css" href="./style.css">
+<body>
diff --git a/src/dollars.gif b/src/dollars.gif
Binary files differ.
diff --git a/src/electronics.md b/src/electronics.md
@@ -0,0 +1,3 @@
+# alex is moving electronics
+
+tbd
diff --git a/src/forsale.gif b/src/forsale.gif
Binary files differ.
diff --git a/src/furniture.md b/src/furniture.md
@@ -0,0 +1,3 @@
+# alex is moving furniture
+
+tbd
diff --git a/src/index.md b/src/index.md
@@ -0,0 +1,14 @@
+# alex is moving
+
+i am moving. and selling stuff, giving other stuff away for free. If you're interested, contact me through the means in which I sent you this website or [via email](mailto:alex@alexwennerberg.com).
+
+all items are name your price
+
+
+**[furniture](./furniture.html)**
+**[electronics](./electronics.html)**
+**[misc](./misc.html)**
+
+<br>
+
+
diff --git a/src/misc.md b/src/misc.md
@@ -0,0 +1,3 @@
+# alex is moving misc
+
+tbd
diff --git a/src/robots.txt b/src/robots.txt
@@ -0,0 +1,2 @@
+User-agent: *
+Disallow: /
diff --git a/src/style.css b/src/style.css
@@ -0,0 +1,40 @@
+body {
+ font-size:18px;
+ font-family: "Roboto", Helvetica, Arial, Sans-serif;
+ word-wrap: break-word;
+ line-height: 1.5;
+}
+
+a, a:visited {
+ color: black;
+ background: linear-gradient(90deg, hotpink, orange);
+}
+
+h1 {
+ font-size: 5ch;
+}
+
+h1, h2, h3, h4, h5, h6{
+ margin-top:0;
+ margin-bottom:.2em;
+ font-family: monospace;
+ color: #52f;
+ text-decoration: underline;
+}
+
+p {
+ margin-bottom: .2em;
+ line-height: 1.5;
+ margin-top: 0px;
+}
+
+a {
+ font-weight: bold;
+ text-decoration: underline;
+}
+
+a:hover {
+ background: linear-gradient(90deg, purple, black);
+ transition-duration: 150ms;
+ color: white
+}