forked from banago/simple-php-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
33 lines (30 loc) · 964 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php require 'functions.php'; ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title><?php siteName(); ?> | <?php pageTitle(); ?></title>
<style type="text/css">
.wrap { max-width: 700px; margin: 50px auto; padding: 30px; text-align: center; box-shadow: 0 0 5px rgba(0,0,0,.5); }
article { text-align: left; padding: 40px; }
</style>
</head>
<body>
<div class="wrap">
<header>
<h2><?php siteName(); ?></h2>
<nav class="menu">
<a href="/" title="Home">Home</a> |
<a href="/?page=about-us">About</a> |
<a href="/?page=products">Products</a> |
<a href="/?page=contact-us">Contact</a>
</nav>
</header>
<article>
<h3><?php pageTitle(); ?></h3>
<?php pageContent(); ?>
</article>
<footer><small>©<?php echo date('Y'); ?> <?php siteName(); ?>. All rights reserved.</small></footer>
</div>
</body>
</html>