From c17d54a637fadef229723b90c4b09de233e77967 Mon Sep 17 00:00:00 2001 From: roy Date: Mon, 8 Jun 2026 04:10:25 +0300 Subject: Added navbar. 3 pages. More styling. Proper link to git. --- .buildignore | 5 ++++- .gitignore | 1 - Caddyfile | 10 ++++++++++ IMG_5491.jpg | Bin 337923 -> 0 bytes about/index.html | 13 +++++++++++++ globalhead.html | 1 + globalstyle.css | 36 ++++++++++++++++++++++++++++++++++++ header.html | 7 +++++++ index.css | 0 index.html | 11 ++++++----- index.js | 0 resume/index.html | 13 +++++++++++++ script.js | 1 - style.css | 4 ---- 14 files changed, 90 insertions(+), 12 deletions(-) create mode 100644 Caddyfile delete mode 100644 IMG_5491.jpg create mode 100644 about/index.html create mode 100644 globalhead.html create mode 100644 globalstyle.css create mode 100644 header.html create mode 100644 index.css create mode 100644 index.js create mode 100644 resume/index.html delete mode 100644 script.js delete mode 100644 style.css 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 Binary files a/IMG_5491.jpg and /dev/null 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 @@ + + + + + + hiiiii + {{ include "globalhead.html" }} + + + {{ include "header.html" }} +
WIP! *about* to come back later!! (:
+ + diff --git a/globalhead.html b/globalhead.html new file mode 100644 index 0000000..01eba23 --- /dev/null +++ b/globalhead.html @@ -0,0 +1 @@ + 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 @@ + + diff --git a/index.css b/index.css new file mode 100644 index 0000000..e69de29 diff --git a/index.html b/index.html index 09217a5..a5a2a63 100644 --- a/index.html +++ b/index.html @@ -3,11 +3,12 @@ - hiiiii - + Roy Betsalel + {{ include "globalhead.html" }} -
WIP come back later!! (:
- + {{ include "header.html" }} +

WIP! Come back when I'm done!!

+ - \ No newline at end of file + diff --git a/index.js b/index.js new file mode 100644 index 0000000..e69de29 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 @@ + + + + + + hiiiii + {{ include "globalhead.html" }} + + + {{ include "header.html" }} +
WIP! will *resume* later!! (:
+ + 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 -- cgit v1.3.1