+1 to drinking ben

This commit is contained in:
Benjamyn Love 2018-05-30 04:00:14 +10:00
parent f1ee705573
commit 851b61359e

View File

@ -6,30 +6,42 @@
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS --> <!-- Bootstrap CSS -->
<link rel="stylesheet" href="/static/css/bootstrap.min.css" crossorigin="anonymous"> <link rel="stylesheet" href="http://benjamyn.love/css/bootstrap.min.css">
<style>
<link rel="stylesheet" href="/static/css/test.css"> .test {
<title>WhoIWatch</title> vertical-align: bottom;
height: 100px;
width: 100px;
display: table-cell;
}
</style>
</head> </head>
<body class='body'>
<div class="navbar myNav "> <div class="navbar h-100 d-flex justify-content-center" style="margin-bottom: 10px;">
<div class="container d-flex justify-content-center" style="width: auto"> <div>
<h3>WhoIWatch</h3> <h3>WhoIWatch</h3>
</div> </div>
</div> </div>
<div class="records container h-100 d-flex justify-content-center" style="max-width: auto">
<div class="column rounded "> <div class="container">
<b>Live Currently :D</b> <div class="card-group">
{% for x in livestreamdata %} {% 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> <div class="card" >
<img class="card-img-top" src="https://static-cdn.jtvnw.net/previews-ttv/live_user_{{ x["channel"]["name"] }}-300x200.jpg" alt="Card image cap">
<div class="card-body">
<h5 class="card-title"><a href="{{ x["channel"]["url"] }}" > {{ x["channel"]["display_name"] }}</a> <img src="{{ x["channel"]["logo"]}}" height="16" width="16" style="vertical-align: unset" ></h5>
<p class="card-text test">{{ x["channel"]["game"] }}</p>
<p class="card-text test"><small class="text-muted">{{ x["viewers"] }} Viewers</small></p>
</div>
</div>
{% endfor %} {% endfor %}
</div> </div>
</div> </div>
<!-- Optional JavaScript --> <!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS --> <!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="/static/js/jquery-3.3.1.slim.min.js" crossorigin="anonymous"></script> <script src="http://benjamyn.love/js/jquery-3.3.1.slim.min.js"></script>
<script src="/static/js/popper.min.js" crossorigin="anonymous"></script> <script src="http://benjamyn.love/js/popper.min.js"></script>
<script src="/static/js/bootstrap.min.js" crossorigin="anonymous"></script> <script src="http://benjamyn.love/js/bootstrap.min.js"></script>
</body> </body>
</html> </html>