1<!DOCTYPE html>
 2<html>
 3	<head>
 4		<title>{{.Repo.Name}} - Readme</title>
 5		<link rel="stylesheet" href="/static/style.css">
 6		<link rel="shortcut icon" href="/static/favicon.png">
 7	</head>
 8	<body>
 9		{{template "nav-main.html" .}}
10
11		<main>
12			{{template "nav-repository.html" .}}
13
14			<div class="readme-content">
15				{{.Content}}
16			</div>
17		</main>
18
19		{{template "footer.html" .}}
20	</body>
21</html>