WIP Setting up website (version using restructured text).
This commit is contained in:
87
website/template.html
Normal file
87
website/template.html
Normal file
@ -0,0 +1,87 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset=utf-8 />
|
||||
<title><%title%> - New Life Introductory Band</title>
|
||||
|
||||
<link href="http://fonts.googleapis.com/css?family=Roboto+Condensed|Cantarell" rel="stylesheet" type="text/css">
|
||||
|
||||
<style type=text/css>
|
||||
|
||||
body {
|
||||
font-family: Cantarell, sans;
|
||||
margin: 2vw auto;
|
||||
width: 40em;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 { font-family: 'Roboto Condensed', sans; }
|
||||
|
||||
footer {
|
||||
color: #999;
|
||||
text-align: center;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
a { color: black; }
|
||||
a:hover { color: orange; }
|
||||
|
||||
#nav {
|
||||
position: fixed;
|
||||
left: calc(50% - 36em);
|
||||
top: 2vw;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#nav h1 {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: x-large;
|
||||
}
|
||||
|
||||
#content h1 { font-size: x-large; }
|
||||
#content h2 { font-size: large; }
|
||||
#content h3 { font-size: medium; }
|
||||
|
||||
#content h4 {
|
||||
font-size: medium;
|
||||
font-weight: normal;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#content h5 {
|
||||
font-size: medium;
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
#content h6 {
|
||||
font-size: small;
|
||||
font-weight: normal;
|
||||
font-variant: small-caps;
|
||||
}
|
||||
|
||||
#content h1.title {
|
||||
font-size: xx-large;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
</style>
|
||||
</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>
|
Reference in New Issue
Block a user