29 lines
		
	
	
		
			977 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			977 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php include "./php/age.php"; ?>
 | 
						|
<?php $page_title = "home"; ?>
 | 
						|
 | 
						|
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
<?php include "./page-blocks/head.php"; ?>
 | 
						|
  <body>
 | 
						|
<?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">
 | 
						|
      <h2>Website Migration</h2>
 | 
						|
      <p>
 | 
						|
        I am migrating this website to Kubernetes, it may become temporarily 
 | 
						|
        unavailable and HTTPS connections may fail over the next 24 hours.
 | 
						|
      </p>
 | 
						|
      <p>
 | 
						|
        Hello, I'm Fred, a <?php echo getAge(1993,11); ?> year old 
 | 
						|
        rail professional 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.
 | 
						|
      </p>
 | 
						|
      <p>
 | 
						|
        I will eventually write more here and probably throw in some photos.
 | 
						|
      </p>
 | 
						|
    </div>
 | 
						|
<?php include "./page-blocks/footer.php"; ?>
 | 
						|
  </body>
 | 
						|
</html>
 |