-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
35 lines (29 loc) · 1022 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
34
35
<!DOCTYPE html>
<?php $page = 'work'; ?>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:400,900i" rel="stylesheet">
<link rel="stylesheet" href="/src/style.css">
<meta name="viewport" content ="width=device-width,initial-scale=1,user-scalable=yes" />
</head>
<body>
<header>
<?php include ("includes/header.php");?>
</header>
<section>
<?php if (isset($_GET['story'])) {
require 'includes/article.php';
} else {
require 'includes/home.php';
} ?>
</section>
<footer>
<p>Design and Front-End by Tyson Reeder. Development help from <a href="https://www.linkedin.com/in/michaelbautista" target="_blank" title="Visit Mike Bautista's Website">Mike Bautista</a>.</p>
</footer>
<script>
document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] +
':35729/livereload.js?snipver=1"></' + 'script>');
</script>
</body>
</html>