forked from jfalkinburg/ECE382
-
Notifications
You must be signed in to change notification settings - Fork 1
/
template.ejs
executable file
·26 lines (26 loc) · 1.31 KB
/
template.ejs
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
<!DOCTYPE html>
<html lang="en">
<head>
<title><%= title %></title>
<meta name="description" content="ECE 382 - Intro to Embedded Systems with the MSP430 at the United States Air Force Academy (USAFA). Covers assembly language, C, and MSP430 subsystems including SPI, GPIO, PWM, Timers, and interrupts. Free and open course on the MSP430.">
<meta name="author" content="Capt Jeff Falkinburg">
<link rel='stylesheet' type='text/css' href='//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css'>
<script src='//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js'></script>
</head>
<body>
<div class = "container">
<div class = "navbar navbar-inverse">
<div class = "navbar-inner">
<a class = "brand" href="/382/index.html">ECE382</a>
<ul class = "nav">
<li><a href="/">Home</a></li>
<li><a href="/382/labs/index.html">Labs</a></li>
<li><a href="/382/datasheets/index.html">Datasheets</a></li>
<li><a href="/382/admin/index.html">Admin</a></li>
</ul>
</div>
</div>
<%- markdown %>
</div>
</body>
</html>