-
Notifications
You must be signed in to change notification settings - Fork 2
/
song.en.html
37 lines (30 loc) · 1.11 KB
/
song.en.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{ title }}</title>
<link rel="stylesheet" href="http://serverless-aws-website.s3-website.eu-west-2.amazonaws.com/site.css" />
</head>
<body>
<main class="layout-main">
<header class="page-header" style="background: url('http://serverless-aws-website.s3-website.eu-west-2.amazonaws.com/uk-flag.png'); background-size: cover">
<div class="container flex">
<img src="http://serverless-aws-website.s3-website.eu-west-2.amazonaws.com/logo.png" />
</div>
</header>
<section class="container flex centered">
<h1>{{ title }}</h1>
<p class="lyrics-text">{{ lyrics }}</p>
</section>
<section class="container flex centered top-margin">
<a href="/">< Back</a>
</section>
</main>
<footer class="layout-footer">
<div class="container">
© 2023 - <a href="#">copyright</a>
</div>
</footer>
</body>
</html>