aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorroy <[email protected]>2026-06-08 04:10:25 +0300
committerroy <[email protected]>2026-06-08 04:10:25 +0300
commitc17d54a637fadef229723b90c4b09de233e77967 (patch)
tree4dc5a2ba6dbbc44e78a8a6b49f65ac9dec0d64a7
parentde4d59813b6ec55515fa76e303643011898fd234 (diff)
Added navbar. 3 pages. More styling. Proper link to git.HEADmaster
-rw-r--r--.buildignore5
-rw-r--r--.gitignore1
-rw-r--r--Caddyfile10
-rw-r--r--IMG_5491.jpgbin337923 -> 0 bytes
-rw-r--r--about/index.html13
-rw-r--r--globalhead.html1
-rw-r--r--globalstyle.css36
-rw-r--r--header.html7
-rw-r--r--index.css0
-rw-r--r--index.html11
-rw-r--r--index.js0
-rw-r--r--resume/index.html13
-rw-r--r--script.js1
-rw-r--r--style.css4
14 files changed, 90 insertions, 12 deletions
diff --git a/.buildignore b/.buildignore
index dcaf716..e9fb01d 100644
--- a/.buildignore
+++ b/.buildignore
@@ -1 +1,4 @@
-index.html
+!*
+.buildignore
+.gitignore
+.git/
diff --git a/.gitignore b/.gitignore
index a234de5..722d5e7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1 @@
.vscode
-index.html
diff --git a/Caddyfile b/Caddyfile
new file mode 100644
index 0000000..9ebd887
--- /dev/null
+++ b/Caddyfile
@@ -0,0 +1,10 @@
+:8081 {
+ root * /home/shimo/repos/portfolio/
+ templates {
+ mime text/html
+ }
+ file_server {
+ disable_canonical_uris
+ }
+ header Cache-Control "no-store"
+}
diff --git a/IMG_5491.jpg b/IMG_5491.jpg
deleted file mode 100644
index 960852f..0000000
--- a/IMG_5491.jpg
+++ /dev/null
Binary files differ
diff --git a/about/index.html b/about/index.html
new file mode 100644
index 0000000..1e5d5d7
--- /dev/null
+++ b/about/index.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>hiiiii</title>
+ {{ include "globalhead.html" }}
+</head>
+<body>
+ {{ include "header.html" }}
+ <div>WIP! *about* to come back later!! (:</div>
+</body>
+</html>
diff --git a/globalhead.html b/globalhead.html
new file mode 100644
index 0000000..01eba23
--- /dev/null
+++ b/globalhead.html
@@ -0,0 +1 @@
+<link rel="stylesheet" href="globalstyle.css">
diff --git a/globalstyle.css b/globalstyle.css
new file mode 100644
index 0000000..2ce4d10
--- /dev/null
+++ b/globalstyle.css
@@ -0,0 +1,36 @@
+:root {
+ --main: #8556db;
+ --sub: #b892ff;
+ --bg: #000000;
+}
+
+html {
+ background-color: var(--bg);
+ color: white;
+ font-size: 30px;
+}
+
+header.navbar {
+ border-bottom: 3px solid var(--main);
+ font-size: 30px;
+ display: flex;
+ align-items: center;
+ justify-content: space-around;
+ width: 66%;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+header.navbar a {
+ color: var(--main);
+ text-decoration: none;
+}
+
+header.navbar a:visited {
+ color: var(--main);
+}
+
+header.navbar a:hover {
+ color: var(--sub);
+ text-decoration: none;
+}
diff --git a/header.html b/header.html
new file mode 100644
index 0000000..75fd3b5
--- /dev/null
+++ b/header.html
@@ -0,0 +1,7 @@
+<script src="index.js"></script>
+<header class="navbar">
+ <a href="/">Home</a>
+ <a href="/about">About Me</a>
+ <a href="/resume">Résumé</a>
+ <a href="https://git.roybetsalel.com/" target="_blank">Git↗</a>
+</header>
diff --git a/index.css b/index.css
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/index.css
diff --git a/index.html b/index.html
index 09217a5..a5a2a63 100644
--- a/index.html
+++ b/index.html
@@ -3,11 +3,12 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>hiiiii</title>
- <link rel="stylesheet" href="style.css">
+ <title>Roy Betsalel</title>
+ {{ include "globalhead.html" }}
</head>
<body>
- <div>WIP come back later!! (:</div>
- <script src="script.js"></script>
+ {{ include "header.html" }}
+ <h1>WIP! Come back when I'm done!!</h1>
+ <script src="index.js"></script>
</body>
-</html> \ No newline at end of file
+</html>
diff --git a/index.js b/index.js
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/index.js
diff --git a/resume/index.html b/resume/index.html
new file mode 100644
index 0000000..4d7ddc7
--- /dev/null
+++ b/resume/index.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>hiiiii</title>
+ {{ include "globalhead.html" }}
+</head>
+<body>
+ {{ include "header.html" }}
+ <div>WIP! will *resume* later!! (:</div>
+</body>
+</html>
diff --git a/script.js b/script.js
deleted file mode 100644
index 8b13789..0000000
--- a/script.js
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/style.css b/style.css
deleted file mode 100644
index 5eccafa..0000000
--- a/style.css
+++ /dev/null
@@ -1,4 +0,0 @@
-html {
- background-color: black;
- color: white;
-} \ No newline at end of file