-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtopofpageBootStrap.html
34 lines (31 loc) · 1.15 KB
/
topofpageBootStrap.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
s<html>
<head>
<title>Meeting Notes</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand">Team Notes</a>
</div>
<ul class="nav navbar-nav">
<li><a href="#ActionsList">Action Items</a></li>
<li><a href="#DesignMeeting">Design Meeting</a></li>
<li><a href="#Procurement"</a>Procurement Meeting</li>
</ul>
</div>
</nav>
<div class = "container">
<div class="row">
<div class="col-sm-12">
{{ meetings }}
</div>
</div>
</div>
</body>
</html>