fredboniface.co.uk/index.php

43 lines
1.1 KiB
PHP
Raw Normal View History

2022-09-08 21:26:20 +01:00
<!DOCTYPE html>
2022-10-07 11:14:36 +01:00
<?php
include "./php/age.php";
2022-10-07 11:36:26 +01:00
include "./page-blocks/head-content.php";
include "./page-blocks/footer.php";
2022-10-07 11:14:36 +01:00
?>
2022-09-08 21:26:20 +01:00
<html>
<head>
2022-10-07 11:14:36 +01:00
<?php insert_head(); ?>
2022-10-06 22:26:39 +01:00
<title>Fred Boniface - Hello</title>
2022-09-08 21:26:20 +01:00
</head>
2022-10-06 22:26:39 +01:00
2022-09-08 21:26:20 +01:00
<body>
2022-10-06 22:26:39 +01:00
<h1 class="page-title">Hello</h1>
<div class="page-main-content">
<p>
2022-10-07 11:14:36 +01:00
Hi, I am Fred Boniface - a <?php echo getAge(1993,11); ?> year old Rail
Professional with many interests outside of work and while I do have
many opinions about the state of the rail industry at present, this
website aims to be about my personal life and interests, rather than my
work.
2022-10-06 22:26:39 +01:00
</p>
<p>
I am married to Jade and we have two children, Lucy & Ava-Rose - both
in school. I will get around to adding some images to this page - I
promise.
</p>
<p>
To keep this homepage simple and easy to digest, I won't waffle on
about too much here, but there is more to read about each topic on
the relevant page.
</p>
2022-09-08 21:26:20 +01:00
</div>
2022-10-07 11:14:36 +01:00
<?php insert_footer(); ?>
2022-10-06 22:26:39 +01:00
2022-09-08 21:26:20 +01:00
</body>
2022-10-07 11:14:36 +01:00
</html>