new-life-introductory-band/website/template.html

29 lines
976 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
2017-02-17 21:30:02 +00:00
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0">
<title><%title%> - New Life Introductory Band</title>
<link href="http://fonts.googleapis.com/css?family=Roboto+Condensed|Cantarell" rel="stylesheet" type="text/css">
2017-02-14 05:43:02 +00:00
<link href="/css/new-life-intro-band.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id=nav>
<h1><a href=/>New Life Intro Band</a></h1>
<ul>
<li><a href='/agendas/'>Practice Agendas</a></li>
<li><a href='/reference-tracks/'>Reference Tracks</a></li>
<li><a href='/lead-sheets/'>Lead Sheets</a></li>
<li><a href='/schedules/'>Schedules</a></li>
</ul>
</div>
<div id=content>
<h1 class=title><%title%></h1>
<%CONTENT%>
</div>
<footer>Banged together in a day by <a href=https://github.com/jdbernard>Jonathan Bernard</a>.</footer>
</body>
</html>