initial commit

This commit is contained in:
rramiachraf
2022-06-30 21:32:56 +01:00
commit 7b2c43cc16
13 changed files with 285 additions and 0 deletions

18
views/lyrics.tmpl Normal file
View File

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>{{.Artist}} - {{.Title}} lyrics</title>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="/static/style.css" />
<script type="text/javascript" src="/static/script.js" async></script>
</head>
<body>
<h1 id="nav">DUMB</h1>
<div id="metadata">
<img src="{{.Image}}"/>
<h2>{{.Artist}}</h2>
<h1>{{.Title}}</h1>
</div>
<div id="lyrics">{{.Lyrics}}</div>
</body>
</html>