summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2024-03-21 11:18:31 +0000
committerdavidovski <david@davidovski.xyz>2024-03-21 11:18:31 +0000
commitd3ab8fe00d7e101087aadbcf915e9306ed1dd58a (patch)
treeffe322ad5b66a61e5f29c1d334c41b6b121f5f4f
parent5a6d82320206c632db569c803f2dadd8cd641cfd (diff)
add contact and donate
-rwxr-xr-xsite/index.html19
-rwxr-xr-xsite/page.sh10
-rw-r--r--site/style.css10
3 files changed, 31 insertions, 8 deletions
diff --git a/site/index.html b/site/index.html
index 0f9c75d..06f3f14 100755
--- a/site/index.html
+++ b/site/index.html
@@ -6,9 +6,8 @@ cat << EOF
<div class="grid">
<div class="about">
- <p>Hi, I'm david and this is my website.</p>
+ <p>hi, i'm david and this is my website. i'm interested in all things esoteric as well as writing <a href="/git/shblg.git/tree/src/md2html.sh">"shell scripts"</a> and playing around with free software</p>
- <p>if you want to contact me, you can message me on matrix <code>@ix:davidovski.xyz</code>.</p>
</div>
<div class="image">
@@ -41,5 +40,19 @@ for file in $entries; do
cat << EOF
</ul>
- </div>
+EOF
+
+cat << EOF
+ <div class="left">
+ <h2>donate</h2>
+
+ <p>if you like what i do and you want to support me, consider donating <a href="https://www.getmonero.org/">Monero</a></p>
+
+ <code>49ECi71yshT6kvzFJKyvVDXLarVp9EGR54ZUw9ebqPetKn2kbaRavFG4FCG4MALkGXVZ16KM5c92MJ7vDWL7iwFs66Q1UQ2</code>
+ </div>
+ <div class="right">
+ <h2>contact</h2>
+
+ <p>if you want to contact me, you can message me on matrix <code>@ix:davidovski.xyz</code> or via the email linked at the top of the page.</p>
+ </div>
EOF
diff --git a/site/page.sh b/site/page.sh
index d3bf1a7..426eb59 100755
--- a/site/page.sh
+++ b/site/page.sh
@@ -20,16 +20,16 @@ cat << EOF
<body bgcolor="#191919" text="#f58f44" link="#b4d6d1">
<div valign="middle" class="main $type" bgcolor="#191919" text="#f58f44">
<div class="header">
- <a href="https://davidovski.xyz/"<h1 class="title">davidovski.xyz</h1></a>
+ <a href="/"<h1 class="title">davidovski.xyz</h1></a>
<hr>
<div class="links">
- <a href="https://davidovski.xyz/git">git</a>
+ <a href="/git">git</a>
||
- <a color="#cc6666" style="color: var(--red);" href="https://davidovski.xyz/m">m</a>
+ <a color="#cc6666" style="color: var(--red);" href="/m">m</a>
|
- <a color="#cc6666" style="color: var(--red);" href="https://davidovski.xyz/f">f</a>
+ <a color="#cc6666" style="color: var(--red);" href="/f">f</a>
|
- <a color="#cc6666" style="color: var(--red);" href="https://davidovski.xyz/s">s</a>
+ <a color="#cc6666" style="color: var(--red);" href="/s">s</a>
||
<a color="#b5bd68" style="color: var(--green)" href="http://chat.davidovski.xyz/">chat</a>
|
diff --git a/site/style.css b/site/style.css
index 6d1626f..7e5c0ee 100644
--- a/site/style.css
+++ b/site/style.css
@@ -164,6 +164,16 @@ pre {
width: auto;
}
+.left {
+ width: 45%;
+ float: left;
+}
+
+.right {
+ width: 45%;
+ float: right;
+}
+
.image {
width: auto;
float: right;