diff options
Diffstat (limited to 'src/pages/about.php')
-rw-r--r-- | src/pages/about.php | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/src/pages/about.php b/src/pages/about.php index b9f8b22..3103ebb 100644 --- a/src/pages/about.php +++ b/src/pages/about.php @@ -2,7 +2,10 @@ <?php const BIRTHDATE = "2001-04-13"; -$age = date_diff(new DateTimeImmutable(), new DateTimeImmutable(BIRTHDATE))->format("%y"); +$age = date_diff( + new DateTimeImmutable(), + new DateTimeImmutable(BIRTHDATE) +)->format("%y"); ?> @@ -13,5 +16,16 @@ $age = date_diff(new DateTimeImmutable(), new DateTimeImmutable(BIRTHDATE))->for <?php include SRCDIR . "/includes/under-construction.php"; ?> <p>Hello, I'm <strong>Jonas Kohl</strong> aka <strong>hozyro</strong>!</p> -<p>I'm <strong><?= $age ?>-year-old</strong> student and software engineer. I use <strong>they/them</strong>, <strong>she/her</strong> and <strong>he/him</strong> pronouns.</p> -<p>I love retro computing, especially the early to mid-2000s (yes, that's considered retro now, get over it), as you can tell by this website (which btw should work just fine in IE 6 if you manage to bypass the SSL errors somehow – I tested it in IE 6, IE 7 and Mozilla 1.1.)</p> +<p> +I'm <strong><?= $age ?>-year-old</strong> student and software engineer. I use +<strong>they/them</strong>, <strong>she/her</strong> and <strong>he/him</strong> +pronouns. +</p> +<p> +I love retro computing, especially the early to mid-2000s (yes, that's +considered retro now, get over it), as you can tell by this website +(which btw should work just fine in IE 6 if you manage to bypass the SSL errors +somehow – I tested it in IE 6, IE 7 and Mozilla 1.1). This website is also +available solely via HTTP over at +<a href="http://hozyro.jkohl.link/">http://hozyro.jkohl.link/</a>! +</p> |