2019-07-26 14:18:32 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2020-01-24 15:59:52 +00:00
|
|
|
<title>sarsoo/music</title>
|
2019-07-26 14:18:32 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Pirata+One|Lato" rel="stylesheet">
|
2019-07-26 11:05:27 +01:00
|
|
|
|
2019-07-26 14:18:32 +01:00
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="https://storage.googleapis.com/sarsooxyzstatic/apple-touch-icon.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="https://storage.googleapis.com/sarsooxyzstatic/favicon-32x32.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="https://storage.googleapis.com/sarsooxyzstatic/favicon-16x16.png">
|
|
|
|
<link rel="manifest" href="https://storage.googleapis.com/sarsooxyzstatic/site.webmanifest">
|
|
|
|
<link rel="mask-icon" href="https://storage.googleapis.com/sarsooxyzstatic/safari-pinned-tab.svg" color="#5bbad5">
|
|
|
|
<link rel="shortcut icon" href="https://storage.googleapis.com/sarsooxyzstatic/favicon.ico">
|
2019-07-26 11:05:27 +01:00
|
|
|
|
2019-07-26 14:18:32 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div>
|
2019-07-29 11:44:10 +01:00
|
|
|
<h1 class="title">sarsoo</h1>
|
2019-07-26 14:18:32 +01:00
|
|
|
</div>
|
2019-07-26 11:05:27 +01:00
|
|
|
|
2019-08-05 21:43:09 +01:00
|
|
|
{% with messages = get_flashed_messages() %}
|
|
|
|
{% if messages %}
|
|
|
|
{% for message in messages %}
|
|
|
|
<div class="row card pad-12">
|
|
|
|
<p class="center-text" style="color: red">{{ message }}</p>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
|
|
|
|
2019-07-26 14:18:32 +01:00
|
|
|
<br><br>
|
|
|
|
|
|
|
|
<div id="react"></div>
|
|
|
|
<script src="{{ url_for('static', filename='js/app.bundle.js') }}"></script>
|
2019-08-05 22:55:07 +01:00
|
|
|
<div id="snackbar">toast</div>
|
2020-02-29 16:30:22 +00:00
|
|
|
<img src="https://storage.googleapis.com/sarsooxyzstatic/andy.png"
|
|
|
|
alt="AP"
|
|
|
|
width="120px"
|
2020-03-01 13:13:02 +00:00
|
|
|
style="display: block;
|
2020-02-29 16:30:22 +00:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
padding: 8px">
|
2019-07-26 14:18:32 +01:00
|
|
|
</body>
|
|
|
|
</html>
|