forked from harsha2512/CMU549_DTR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.php
45 lines (40 loc) · 1.44 KB
/
base.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
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<title>Distributed Tabletop Robots (18-549 Team 11)</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/style.css"/>
</head>
<body>
<header class="box">
<div class="project-title"><a href="index.php">DTR: Distributed Tabletop Robots</a></div>
<div class="team-name">
18-549 Team 11:
<ul class="project-authors">
<li>Ibukun Adeleye (iia)</li>
<li>Dale Best (dbest)</li>
<li>Daniel Bucci (dlbucci)</li>
<li>Sriharsha Vasadi (svasadi)</li>
</ul>
</div>
</header>
<nav class="box">
<ul class="nav">
<li><a href="index.php">Concept</a></li>
<li><a href="motivation.php">Motivation</a></li>
<li><a href="competitive.php">Competitive Analysis</a></li>
<li><a href="requirements.php">Requirements</a></li>
<li><a href="components.php">Components</a></li>
<li><a href="architecture.php">Architecture</a></li>
<li><a href="useCases.php">Use Cases</a></li>
<li><a href="interactions.php">Interactions</a></li>
</ul>
</nav>
<h2 class="box page-title"><?= $title ?></h2>
<div id="main" class="box">
<? include $content ?>
</div>
<footer class="box">Created by Team 11 for the Spring 2015 Semester of 18-549.</footer>
</body>
</html>