diff options
author | Jonas Kohl | 2024-07-19 13:09:00 +0200 |
---|---|---|
committer | Jonas Kohl | 2024-07-19 13:09:00 +0200 |
commit | 3b9bb27ab9179334fe3c96ae8dbc249061649aff (patch) | |
tree | d7c612cbd9f0c3b337e0713c0507a1acae8e90c9 /src/pages/about.php |
Initial commit
Diffstat (limited to 'src/pages/about.php')
-rw-r--r-- | src/pages/about.php | 16 |
1 files changed, 16 insertions, 0 deletions
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 @@ + +<?php + +const BIRTHDATE = "2001-04-13"; +$age = date_diff(new DateTimeImmutable(), new DateTimeImmutable(BIRTHDATE))->format("%y"); + +?> + +<title>About me</title> + +<h1>About me</h1> + +<?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> |