Fred Boniface
5590bf6fe3
Merge new style. Error pages need redesigning and content needs additions but overall ready to deploy. Co-authored-by: fred.boniface <fred@fjla.uk> Reviewed-on: #2
22 lines
629 B
PHP
22 lines
629 B
PHP
<?php include "./php/age.php"; ?>
|
|
<?php $page_title = "contact"; ?>
|
|
|
|
<!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">
|
|
<p>
|
|
I will build a contact form here. For the moment:
|
|
<br>
|
|
<a href="/downloads/vcard.vcf">Add me to your contacts</a>
|
|
<br>
|
|
or check out my social links in the menu.
|
|
</p>
|
|
</div>
|
|
<?php include "./page-blocks/footer.php"; ?>
|
|
</body>
|
|
</html>
|