summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnav Bhatt <arnav@ghativega.in>2023-03-21 16:30:54 +0530
committerArnav Bhatt <arnav@ghativega.in>2023-03-21 16:30:54 +0530
commit5963453528ec8bcf680a6c7eb9050f1d2f120a57 (patch)
treea602a4a7f608f5c1780725d15412e5c31757cb86
parent5e675ddd01af134bc2c9be2d74629bb03fb15c59 (diff)
add donate link and update year (after 3 months lol)
-rwxr-xr-xdata/about.html3
-rw-r--r--data/assets/images/qr.pngbin0 -> 7547 bytes
-rwxr-xr-xdata/contact.html3
-rw-r--r--data/donate.html40
-rwxr-xr-xdata/softwares.html3
-rwxr-xr-xdata/style.css7
-rwxr-xr-xtemplates/footer.html2
-rwxr-xr-xtemplates/index_header.html1
8 files changed, 55 insertions, 4 deletions
diff --git a/data/about.html b/data/about.html
index de7dd63..e4cd738 100755
--- a/data/about.html
+++ b/data/about.html
@@ -21,6 +21,7 @@
<li><a class="active" href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="softwares.html">Softwares</a></li>
+ <li><a href="donate.html">Donate</a></li>
</ul>
<hr>
@@ -64,7 +65,7 @@
</main>
<div class = footer>
- <p>Copyright 2022 ghativega.in</p>
+ <p>Copyright 2023 ghativega.in</p>
</div>
</body>
</html>
diff --git a/data/assets/images/qr.png b/data/assets/images/qr.png
new file mode 100644
index 0000000..1ea3423
--- /dev/null
+++ b/data/assets/images/qr.png
Binary files differ
diff --git a/data/contact.html b/data/contact.html
index c079d8d..af21ff3 100755
--- a/data/contact.html
+++ b/data/contact.html
@@ -21,6 +21,7 @@
<li><a href="about.html">About</a></li>
<li><a class="active" href="contact.html">Contact</a></li>
<li><a href="softwares.html">Softwares</a></li>
+ <li><a href="donate.html">Donate</a></li>
</ul>
<hr>
@@ -35,7 +36,7 @@
</main>
<div class = footer>
- <p>Copyright 2022 ghativega.in</p>
+ <p>Copyright 2023 ghativega.in</p>
</div>
</body>
</html>
diff --git a/data/donate.html b/data/donate.html
new file mode 100644
index 0000000..0f5ba5b
--- /dev/null
+++ b/data/donate.html
@@ -0,0 +1,40 @@
+<!DOCTYPE html>
+
+<html>
+ <head>
+ <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
+ <link rel='stylesheet' type='text/css' href='style.css'>
+ <meta property="og:title" content="Ghativega.in">
+ <meta property="og:description" content="Personal site of arnavbhatt288.">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
+ <title>Ghativega - Softwares</title>
+ <style>
+ img { border: none ;}
+ </style>
+ </head>
+
+<body>
+ <div class = logo><img src="assets/images/logo.png" alt="Ghativega"></div>
+ <ul class = navbar>
+ <li><a href="index.html">Home</a></li>
+ <li><a href="about.html">About</a></li>
+ <li><a href="contact.html">Contact</a></li>
+ <li><a href="softwares.html">Softwares</a></li>
+ <li><a class="active" href="donate.html">Donate</a></li>
+ </ul>
+ <hr>
+ <main>
+ <h3>Donate</h3>
+ <p>The only currency I accept for donations is Monero.</p>
+ <p>If you don’t have any Monero, I recommend you donate using any crypto (Bitcoin, Litecoin, or whatever) through some <a href="https://changenow.io/">crypto exchange</a>.</p>
+ <br>
+ <p>Wallet: <code>46rqYsvW4tXAbPsfACha53KBW83CsiXrKGfJneziQG3XesYu6Es72c5BuWBT482epvVBUK8ByezTj6he31ebyrgEJWchT6P</code></p>
+ <p>QR Code:<br><br><img src="assets/images/qr.png" alt="46rqYsvW4tXAbPsfACha53KBW83CsiXrKGfJneziQG3XesYu6Es72c5BuWBT482epvVBUK8ByezTj6he31ebyrgEJWchT6P"></p>
+ </main>
+
+ <div class = footer>
+ <p>Copyright 2023 ghativega.in</p>
+ </div>
+</body>
+</html>
diff --git a/data/softwares.html b/data/softwares.html
index 7eefbe2..6dec820 100755
--- a/data/softwares.html
+++ b/data/softwares.html
@@ -21,6 +21,7 @@
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a class="active" href="softwares.html">Softwares</a></li>
+ <li><a href="donate.html">Donate</a></li>
</ul>
<hr>
<main>
@@ -28,7 +29,7 @@
</main>
<div class = footer>
- <p>Copyright 2022 ghativega.in</p>
+ <p>Copyright 2023 ghativega.in</p>
</div>
</body>
</html>
diff --git a/data/style.css b/data/style.css
index b1e1e2d..52b55d5 100755
--- a/data/style.css
+++ b/data/style.css
@@ -23,6 +23,13 @@ body {
padding: 0;
}
+code {
+ border-radius: 5px;
+ color: #19ca24;
+ background: #202020;
+ display: inline-block;
+}
+
.footer {
position: absolute;
bottom: 0;
diff --git a/templates/footer.html b/templates/footer.html
index da9fd8c..a8acfe2 100755
--- a/templates/footer.html
+++ b/templates/footer.html
@@ -1 +1 @@
-</main><div class = footer><p>Copyright 2022 ghativega.in | Powered by <a href="https://pedantic.software/git/blogit/">blogit</a> | <a href="atom.xml">Atom RSS</a></p></div></body></html>
+</main><div class = footer><p>Copyright 2023 ghativega.in | Powered by <a href="https://pedantic.software/git/blogit/">blogit</a> | <a href="atom.xml">Atom RSS</a></p></div></body></html>
diff --git a/templates/index_header.html b/templates/index_header.html
index 17bce65..98d4f8d 100755
--- a/templates/index_header.html
+++ b/templates/index_header.html
@@ -4,6 +4,7 @@
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="softwares.html">Softwares</a></li>
+<li><a href="donate.html">Donate</a></li>
</ul>
<hr>
<main>