diff options
Diffstat (limited to 'html/index.php')
-rw-r--r-- | html/index.php | 26 |
1 files changed, 4 insertions, 22 deletions
diff --git a/html/index.php b/html/index.php index 89ea644..29e0cfa 100644 --- a/html/index.php +++ b/html/index.php @@ -1,26 +1,11 @@ -<!DOCTYPE html> +<?php include '@include.php'; ?><!DOCTYPE html> <html lang="en"> <head> - <title>Spragg Software Services Ltd.</title> - <link rel="stylesheet" href="/style/main.css" /> - <!-- - Hi there. Nice to see you here. Feel free to have a look around. Also check out the /about page - while you're at it. It's got a little bit more info about the site and the resources used. - --> + <?php echo indent(site_head('Spragg Software Services Ltd.'), 2); ?> </head> <body> <header> - <h1>Spragg Software Services Ltd.</h1> - <nav> - <ul> - <li class="selected"><a href="/">Home</a></li> - <li><a href="/projects">Projects</a></li> - <li><a href="/blog">Blog</a></li> - <li><a href="/privacy">Privacy</a></li> - <li><a href="/contact">Contact</a></li> - <!--li><a href="/about">About</a></li--> - </ul> - </nav> + <?php echo indent(site_header('Spragg Software Services Ltd.'), 3); ?> </header> <main> <h2><img src="/img/icons/Faenza/mimetypes/32/text-x-source.png" alt="•" /> Software customisation</h2> @@ -62,10 +47,7 @@ able to lend a hand with other platforms too.</p> </main> <footer> - <hr /> - <p>Spragg Software Services Ltd is registered in England, No. 11248242. - Registered office: 82 Upper Hanover Street, Sheffield, S3 7RQ. - VAT reg No. 295343283.</p> + <?php echo indent(site_footer(), 3); ?> </footer> </body> </html> |