From 3b9bb27ab9179334fe3c96ae8dbc249061649aff Mon Sep 17 00:00:00 2001 From: Jonas Kohl Date: Fri, 19 Jul 2024 13:09:00 +0200 Subject: Initial commit --- src/includes/under-construction.php | 4 +++ src/pages/about.php | 16 +++++++++ src/pages/index.php | 3 ++ src/pages/not_found.php | 2 ++ src/static/.DS_Store | Bin 0 -> 6148 bytes src/static/background.jpg | Bin 0 -> 17585 bytes src/static/blank.gif | Bin 0 -> 37 bytes src/static/hozyrossite.png | Bin 0 -> 49380 bytes src/static/nav.gif | Bin 0 -> 1684 bytes src/static/navh.gif | Bin 0 -> 1683 bytes src/static/style.css | 64 ++++++++++++++++++++++++++++++++++++ src/static/under-construction.gif | Bin 0 -> 23388 bytes src/template.php | 53 +++++++++++++++++++++++++++++ 13 files changed, 142 insertions(+) create mode 100644 src/includes/under-construction.php create mode 100644 src/pages/about.php create mode 100644 src/pages/index.php create mode 100644 src/pages/not_found.php create mode 100644 src/static/.DS_Store create mode 100644 src/static/background.jpg create mode 100644 src/static/blank.gif create mode 100644 src/static/hozyrossite.png create mode 100644 src/static/nav.gif create mode 100644 src/static/navh.gif create mode 100644 src/static/style.css create mode 100644 src/static/under-construction.gif create mode 100644 src/template.php (limited to 'src') diff --git a/src/includes/under-construction.php b/src/includes/under-construction.php new file mode 100644 index 0000000..0ab79de --- /dev/null +++ b/src/includes/under-construction.php @@ -0,0 +1,4 @@ +
+Under construction
+This page is still under construction! +
diff --git a/src/pages/about.php b/src/pages/about.php new file mode 100644 index 0000000..69e772c --- /dev/null +++ b/src/pages/about.php @@ -0,0 +1,16 @@ + +format("%y"); + +?> + +About me + +

About me

+ + + +

Hello, I'm Jonas Kohl aka hozyro!

+

I'm -year-old student and software engineer. I use they/them, she/her and he/him pronouns.

diff --git a/src/pages/index.php b/src/pages/index.php new file mode 100644 index 0000000..3b15088 --- /dev/null +++ b/src/pages/index.php @@ -0,0 +1,3 @@ +hozyro's site + + diff --git a/src/pages/not_found.php b/src/pages/not_found.php new file mode 100644 index 0000000..b71d6c3 --- /dev/null +++ b/src/pages/not_found.php @@ -0,0 +1,2 @@ +Not found +

The requested page could not be found.

diff --git a/src/static/.DS_Store b/src/static/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/src/static/.DS_Store differ diff --git a/src/static/background.jpg b/src/static/background.jpg new file mode 100644 index 0000000..1a16379 Binary files /dev/null and b/src/static/background.jpg differ diff --git a/src/static/blank.gif b/src/static/blank.gif new file mode 100644 index 0000000..b3aa80d Binary files /dev/null and b/src/static/blank.gif differ diff --git a/src/static/hozyrossite.png b/src/static/hozyrossite.png new file mode 100644 index 0000000..5d5fd50 Binary files /dev/null and b/src/static/hozyrossite.png differ diff --git a/src/static/nav.gif b/src/static/nav.gif new file mode 100644 index 0000000..07d1301 Binary files /dev/null and b/src/static/nav.gif differ diff --git a/src/static/navh.gif b/src/static/navh.gif new file mode 100644 index 0000000..b3788af Binary files /dev/null and b/src/static/navh.gif differ diff --git a/src/static/style.css b/src/static/style.css new file mode 100644 index 0000000..ba507d6 --- /dev/null +++ b/src/static/style.css @@ -0,0 +1,64 @@ +body { + background: #05456a url("background.jpg") top center no-repeat; + font: 10pt Verdana; +} +#wrapper { + width: 1024px; + margin: 0 auto; +} +#logoCell { + padding: 8px; + text-align: center; +} +#mainLayout { + border-spacing: 0; + width: 100%; +} +#navRow { + padding: 0; + background: url("nav.gif"); +} +#navCell { + border: 1px solid #000; + padding: 0; +} +#navLayout { + border-spacing: 0; +} +.navCell { + padding: 0; + border-left: 1px solid #fff; + border-right: 1px solid #000; +} +.navCell a { + display: block; + padding: 4px 32px; + text-decoration: none; + color: black; +} +.navCell a:hover { + color: #05456a; + background: url("navh.gif"); +} +#mainCell { + border: 1px solid #000; + border-top: none; + background: white; + padding: 16px; +} +#footerCell { + border: 1px solid black; + border-top: none; + background: #cfd5da; + padding: 16px; +} +.constructionBox { + margin: 0 auto; + border: 1px solid black; + background: #fffca2; +} +.constructionBoxCell { + padding: 12px; + text-align: center; + line-height: 24px; +} diff --git a/src/static/under-construction.gif b/src/static/under-construction.gif new file mode 100644 index 0000000..ac939c8 Binary files /dev/null and b/src/static/under-construction.gif differ diff --git a/src/template.php b/src/template.php new file mode 100644 index 0000000..16fa5a5 --- /dev/null +++ b/src/template.php @@ -0,0 +1,53 @@ + + + + + <?= htmlentities($title) ?> + + + +
+ + + + + + + + + + + + + + + + +
+ hozyro's site +
+ +
+ Made by Jonas Kohl aka hozyro. +
+
+ + -- cgit v1.2.3