-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.html
42 lines (36 loc) · 996 Bytes
/
app.html
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
<!DOCTYPE html>
<html {{ HTML_ATTRS }}>
<head>
{{ HEAD }}
</head>
<body {{ BODY_ATTRS }}>
{{ APP }}
<!--
<footer class="site-footer">
<div class="container" style="background-color: #000; color: #eee;">
<div class="row">
<div class="col-sm-3 foot">
<h4>Site Map</h4>
<ul class="">
<li><a href="/">Home</a></li>
<li><a href="/about.html">About</a></li>
</ul>
</div>
<div class="col-sm-6 foot">
<h4>Contributers</h4>
<ul class="">
<li><a href="#">UMKC School of Law, LTPP class</a></li>
<li><a href="#">Code for Kansas City</a></li>
</ul>
</div>
<div class="col-sm-3 foot">
<h4>Contact</h4>
<p>Email</p>
<p>Phone</p>
</div>
</div>
</div>
</footer>
-->
</body>
</html>