aboutsummaryrefslogtreecommitdiffstats
path: root/Web/Server/templates/base.html
blob: a141c0a073f3c305c75413f7b94fd29b56364ef3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
    <head>
        <link rel="stylesheet" href="/static/Server.css">
        <script type="text/javascript" src="/static/Server.js"></script>
    </head>
    <body>
		<title>ANDI'S PIE</title>
		<nav class = "container">
            <h1 id="title">Remotely Accessible Inverted Pendulum</h1>
            <h2 id="subtitle">
                By Alin Butoi, Paul D’Amico, Dat Nguyen, Ross Olson, Rachel Schow <br>
                Advisor: Professor Andrew Lamperski <br>
                Sponsored by the University of Minnesota - Twin Cities <br>
            </h2>
        </nav>

        <div class = "container">
            {% block content %}
                default content
            {% endblock %}
        </div>
    </body>
</html>