2022-10-07 21:51:32 +01:00
|
|
|
<?php include "./php/age.php"; ?>
|
2022-10-30 19:27:14 +00:00
|
|
|
<?php $page_title = "home"; ?>
|
2022-10-07 21:51:32 +01:00
|
|
|
|
2022-10-30 19:27:14 +00:00
|
|
|
<!DOCTYPE html>
|
2022-10-07 19:44:52 +01:00
|
|
|
<html lang="en">
|
2022-10-30 19:27:14 +00:00
|
|
|
<?php include "./page-blocks/head.php"; ?>
|
2022-10-07 19:44:52 +01:00
|
|
|
<body>
|
2022-10-30 19:27:14 +00:00
|
|
|
<?php include "./page-blocks/head-img.php"; ?>
|
|
|
|
<?php include "./page-blocks/menu.php"; ?>
|
|
|
|
<?php include "./page-blocks/micro-content.php"; ?>
|
|
|
|
<div class="content hide_micro">
|
2022-10-30 19:40:18 +00:00
|
|
|
<p>
|
2022-10-30 20:00:39 +00:00
|
|
|
Hello, I'm Fred, a <?php echo getAge(1993,11); ?> rail professional
|
2022-10-30 19:57:54 +00:00
|
|
|
and Local RMT Rep. I don't intend for this to be about
|
|
|
|
work though, I do lots of hobbies on the side and you can
|
|
|
|
read about them here.
|
2022-10-30 19:40:18 +00:00
|
|
|
</p>
|
|
|
|
<p>
|
2022-10-30 19:57:54 +00:00
|
|
|
I will eventually write more here and probably throw in some photos.
|
2022-10-30 19:40:18 +00:00
|
|
|
</p>
|
2022-10-30 19:27:14 +00:00
|
|
|
</div>
|
|
|
|
<?php include "./page-blocks/footer.php"; ?>
|
2022-10-07 19:44:52 +01:00
|
|
|
</body>
|
|
|
|
</html>
|