]> Andreas Glashauser | Gitweb - personal-website.git/commitdiff
Initial commit main
authorAndreas Glashauser <ag@andreasglashauser.com>
Mon, 24 Mar 2025 07:34:20 +0000 (08:34 +0100)
committerAndreas Glashauser <ag@andreasglashauser.com>
Mon, 24 Mar 2025 07:42:14 +0000 (08:42 +0100)
LICENSE [new file with mode: 0644]
README.md [new file with mode: 0644]
favicon.png [new file with mode: 0644]
index.html [new file with mode: 0644]
style.css [new file with mode: 0644]

diff --git a/LICENSE b/LICENSE
new file mode 100644 (file)
index 0000000..d4d120a
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,9 @@
+# Released under MIT License
+
+Copyright (c) 2025 Andreas Glashauser.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644 (file)
index 0000000..67036e5
--- /dev/null
+++ b/README.md
@@ -0,0 +1 @@
+My personal website. Surprisingly works without 27 JavaScript Frameworks!
diff --git a/favicon.png b/favicon.png
new file mode 100644 (file)
index 0000000..67ab90d
Binary files /dev/null and b/favicon.png differ
diff --git a/index.html b/index.html
new file mode 100644 (file)
index 0000000..149ff13
--- /dev/null
@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+<html lang="en">
+   <head>
+      <meta charset="UTF-8" />
+      <title>andreasglashauser.com</title>
+      <meta name="viewport" content="width=device-width, initial-scale=1.0">
+      <link rel="icon" type="image/png" sizes="32x32" href="favicon.png" />
+      <link rel="stylesheet" href="style.css" />
+   </head>
+   <body>
+      <div class="content">
+         <div class="logo">AG</div>
+         <div class="intro">
+            <p>
+               You can find my projects
+               <a href="https://git.andreasglashauser.com" target="_blank" rel="noopener noreferrer">here</a>
+               and on
+               <a href="https://github.com/andreasglashauser" target="_blank" rel="noopener noreferrer">GitHub</a>.<br>
+               Commits are signed with my SSH public key.
+            </p>
+            <br/>
+            <p>
+               Feel free to contact me via
+               <a href="https://matrix.to/#/@andreasglashauser:matrix.org" target="_blank" rel="noopener noreferrer">Matrix</a>
+               or
+               <a href="mailto:ag@andreasglashauser.com">mail</a>.
+            </p>
+         </div>
+      </div>
+      <footer>
+         <p>
+            <strong>PGP:</strong>
+            C1E7 8CE6 0139 2ABC C490 72A0 B204 131B B15B 20FE
+            <br/>
+            <strong>SSH PUB:</strong>
+            ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGPWuTBZblSStdSKYebTt1ggVQMrBRPJitU2ju4kvrGY
+            <br/>
+         </p>
+      </footer>
+   </body>
+</html>
diff --git a/style.css b/style.css
new file mode 100644 (file)
index 0000000..f48a2ed
--- /dev/null
+++ b/style.css
@@ -0,0 +1,89 @@
+* {
+  margin: 0;
+  padding: 0;
+  box-sizing: border-box;
+}
+
+body {
+  background-color: #121212;
+  color: #f0f0f0;
+  font-family: sans-serif;
+  display: flex;
+  flex-direction: column;
+  align-items: center;
+  min-height: 100vh;
+  overflow: hidden;
+}
+
+.content {
+  flex: 1;
+  display: flex;
+  flex-direction: column;
+  align-items: center;
+  justify-content: center;
+  width: 100%;
+  padding-bottom: 5rem;
+}
+
+.logo {
+  width: 100px;
+  height: 100px;
+  border-radius: 50%;
+  border: 1px solid #4d4d4d;
+  background-color: #1a1a1a;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  font-size: 3rem;
+  font-weight: bold;
+  margin-bottom: 1.5rem;
+}
+
+.intro {
+  max-width: 600px;
+  text-align: center;
+  margin-bottom: 2rem;
+  line-height: 1.5;
+}
+
+.intro a {
+  color: #bbb;
+  text-decoration: none;
+  border-bottom: 1px dashed #555;
+}
+.intro a:hover {
+  color: #fff;
+  border-bottom-color: #fff;
+}
+
+footer {
+  position: fixed;
+  bottom: 0;
+  left: 0;
+  right: 0;
+
+  text-align: center;
+  font-size: 0.7rem;
+  line-height: 1.4;
+  opacity: 0.8;
+  margin: 0;
+  padding: 0.5rem 0;
+
+  word-wrap: break-word;
+  overflow-wrap: break-word;
+  word-break: break-word;
+}
+
+footer a {
+  color: #bbb;
+  text-decoration: none;
+}
+footer a:hover {
+  color: #fff;
+}
+
+@media (max-width: 480px) {
+  .buttons a {
+    width: 100%;
+  }
+}