48 lines
1.6 KiB
HTML
48 lines
1.6 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||
|
|
<title>Document</title>
|
||
|
|
<link rel="stylesheet" href="/static/css/index.css?v4">
|
||
|
|
<link rel="icon" type="image/png" href="/static/img/favicon.png" />
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<nav class="nav">
|
||
|
|
<div class="nav__section nav__left">
|
||
|
|
<a href="/albums#{{.album.Path}}">Terug</a>
|
||
|
|
</div>
|
||
|
|
<div class="nav__section nav__right">
|
||
|
|
<a href="/">Zingt Leonard Cohen</a>
|
||
|
|
<a href="/love-it">Love It!</a>
|
||
|
|
</div>
|
||
|
|
</nav>
|
||
|
|
<div class="c-page-section">
|
||
|
|
<div class="c-page-section__content">
|
||
|
|
<a class="t-h2" style="text-decoration: none; font-size: 26px; margin-bottom: 25px;" href="/albums#{{.album.Path}}">terug</a>
|
||
|
|
<div></div>
|
||
|
|
<h1 class="t-h1" style="margin-bottom: 15px;">
|
||
|
|
{{.album.Name}} ({{.album.Release}})
|
||
|
|
</h1>
|
||
|
|
<div></div>
|
||
|
|
<h1 class="t-h2">
|
||
|
|
{{.song.Title}}
|
||
|
|
</h1>
|
||
|
|
<div style="margin-bottom: 35px;"></div>
|
||
|
|
{{range .song.Lyrics}}
|
||
|
|
<pre class="t-p1" style="margin-bottom: 25px; font-size: 24px;">
|
||
|
|
{{- . -}}
|
||
|
|
</pre>
|
||
|
|
{{end}}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
|
||
|
|
<footer class="c-footer">
|
||
|
|
<span>© {{.nowYear}} Flip Noorman </span>
|
||
|
|
<span>info@flipnoorman.nl</span>
|
||
|
|
</footer>
|
||
|
|
<script src="/static/js/shared.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|