whoiwatch/templates/index.html

36 lines
1.3 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="/static/css/bootstrap.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="/static/css/test.css">
<title>WhoIWatch</title>
</head>
<body class='body'>
<div class="navbar myNav ">
<div class="container d-flex justify-content-center" style="width: auto">
<h3>WhoIWatch</h3>
</div>
</div>
<div class="records container h-100 d-flex justify-content-center" style="max-width: auto">
<div class="column rounded ">
<b>Live Currently :D</b>
{% for x in livestreamdata %}
<li><a href="{{ x["channel"]["url"] }}" > {{ x["channel"]["display_name"] }} - {{ x["channel"]["game"] }} </a> <img src="{{ x["channel"]["logo"]}}" height="16" width="16" > </li>
{% endfor %}
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="/static/js/jquery-3.3.1.slim.min.js" crossorigin="anonymous"></script>
<script src="/static/js/popper.min.js" crossorigin="anonymous"></script>
<script src="/static/js/bootstrap.min.js" crossorigin="anonymous"></script>
</body>
</html>