<?
include "head.php";
?>

<?
$index = array(
	array(
		"url"=>"graphicdesign.php",
		"title"=>"Graphic Design",
		"img"=>"images/index_graphicdesign.png"),
	array(
		"url"=>"drawings.php",
		"title"=>"Drawings",
		"img"=>"images/index_drawings.png"),
	array(
		"url"=>"photography.php",
		"title"=>"Photography",
		"img"=>"images/index_photography.jpg")
	);
	?>

	<div class="row wrapper index">
		<?
		foreach ($index as $box):
			?>
		<div class="col-4 box-outer">
		<a class="box" href="<?echo $box["url"]?>">
				<img src="<?echo $box["img"]?>">
				<div class="box-title">
					<?echo $box["title"]?>
				</div>
		</a>
		</div>
		<?
		endforeach;
		?>
	</div>

	<?
	include "footer.php";
	?>