DAVIAC-web/template.php

27 lines
606 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<title>DAVIAC: A relay computer</title>
<link rel="stylesheet" href="style.css" type="text/css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="background">
<div class="grid-container">
<?php include("header.php"); ?>
<?php include("sidebar.php"); ?>
<div id="main-text" class="main">
<h2> Add a heading here </h2>
<p> Add text/images/etc here </p>
</div>
<?php include("footer.php"); ?>
</div>
</div>
</body>
</html>