9iron/index.php

27 lines
832 B
PHP
Raw Normal View History

2020-08-16 04:02:16 -05:00
<!DOCTYPE html>
<html>
<head>
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-meta.php';?>
2020-08-16 06:08:38 -05:00
<link href="/styles/buttons.css" type="text/css" rel="stylesheet" />
2020-08-16 04:48:11 -05:00
<title>9iron</title>
2020-08-16 04:02:16 -05:00
</head>
<body>
2020-08-16 04:48:11 -05:00
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-header.php';?>
<div class="content">
2020-08-16 06:08:38 -05:00
<div class="iconbuttoncontainer">
<a href="/minecraft" class="iconbutton">
<i class="fa fa-cube"></i>
2020-08-16 06:08:38 -05:00
<h1>Minecraft</h1>
<p>Modded Minecraft is one of our most-common time wasters</p>
</a>
<a href="/terraria" class="iconbutton">
<i class="fa fa-tree"></i>
2020-08-16 06:08:38 -05:00
<h1>Terraria</h1>
<p>A game we've sunk just as much time into as Minecraft. Sometimes modded, sometimes not</p>
</a>
</div>
2020-08-16 04:48:11 -05:00
</div>
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-footer.php';?>
2020-08-16 04:02:16 -05:00
</body>
</html>