<!DOCTYPE html>
<html lang="en">
<head>
<?php include 'common/include.php' ?>
<title>Tyler Perkins - Home</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<?php include 'common/header.php' ?>
<div class="centered top-fade">
<!--<a class="clickable-div" href="about.php"> -->
<div class="index-item single-column tagline-link">
<h1>Hi, I'm Tyler</h1>
<p>I'm a software developer and tinkerer</p>
<?php
$remote_addr = $_SERVER['REMOTE_ADDR'];
$forwarded_addr = $_SERVER['REMOTE_ADDR'];
$home_addr = gethostbyname("gluttony.clortox.com");
if($remote_addr == $home_addr)
echo "<p>Hello from within the home network!</p>"
?>
</div>
<!--</a>-->
<div class="centered">
<div class="index-item soft-background articles-box">
<div>
<h3>Articles</h3>
<p>To be implemented...</p>
<?php include 'common/footer.php' ?>
</body>
</html>