diff options
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> |