2018-11-25 12:54:23 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>FLeast</title>
|
2021-12-23 15:11:13 +00:00
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
2018-11-25 12:54:23 +00:00
|
|
|
<link rel="shortcut icon" href="./favicon.ico" type="image/png">
|
|
|
|
</head>
|
|
|
|
|
2021-12-23 15:11:13 +00:00
|
|
|
<style>
|
|
|
|
.container-sm {{
|
|
|
|
max-width: 1450px;
|
|
|
|
}}
|
|
|
|
|
|
|
|
body {{
|
|
|
|
background-color: #333333;
|
|
|
|
}}
|
|
|
|
|
|
|
|
footer {{
|
|
|
|
background-color: #AEC6CF;
|
|
|
|
}}
|
|
|
|
|
|
|
|
.strname {{
|
|
|
|
font-weight: bold;
|
|
|
|
}}
|
|
|
|
|
|
|
|
.struser {{
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #0f0
|
|
|
|
}}
|
|
|
|
|
|
|
|
.strviews {{
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #f00
|
|
|
|
}}
|
|
|
|
|
|
|
|
.grid {{
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(320px, 340px));
|
|
|
|
justify-content: space-around;
|
|
|
|
row-gap: 30px;
|
|
|
|
}}
|
|
|
|
</style>
|
|
|
|
|
2018-11-25 12:54:23 +00:00
|
|
|
<body>
|
2021-12-23 15:11:13 +00:00
|
|
|
<div class="container-sm text-white">
|
|
|
|
<br>
|
|
|
|
<h1>Fleast — find new favourite small streamer</h1>
|
|
|
|
<hr>
|
|
|
|
<p>
|
|
|
|
The category must be specified by <b>exact name</b>.<br>Search
|
|
|
|
<b>IRL</b> to find streams from <i>Just Chatting</i>,
|
|
|
|
<i>Travel & Outdoors</i>, and other categories.
|
|
|
|
</p>
|
|
|
|
<form method="get" action="./">
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
Category
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
Language
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<input name="game" type="text" class="form-control-sm" maxlength="255" value="{_game_name_}" placeholder="Specify category"/>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<select name="lang" class="form-control-sm">
|
2018-11-25 12:54:23 +00:00
|
|
|
{_opt_langs_}
|
2021-12-23 15:11:13 +00:00
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<input type="submit" value="Search" class="btn btn-primary btn-sm"/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2018-11-25 12:54:23 +00:00
|
|
|
</table>
|
2021-12-23 15:11:13 +00:00
|
|
|
</form>
|
|
|
|
<hr>
|
|
|
|
<h4> Found {_stream_num_} streams:</h4>
|
|
|
|
<div class="grid">
|
2018-11-25 12:54:23 +00:00
|
|
|
{_stream_list_}
|
2021-12-23 15:11:13 +00:00
|
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
<footer>
|
|
|
|
<div class="text-end text-black p-2">
|
|
|
|
Developed by Alexey Vanin | <a href="https://twitter.com/AlexVanin" target="_blank">twitter</a> |
|
|
|
|
<a href="https://github.com/AlexVanin/fleast" target="_blank">github</a><br>
|
|
|
|
Version: {_version_}
|
|
|
|
</p>
|
2018-11-25 12:54:23 +00:00
|
|
|
</div>
|
2021-12-23 15:11:13 +00:00
|
|
|
</footer>
|
|
|
|
</div>
|
2018-11-25 12:54:23 +00:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|
2021-12-23 15:11:13 +00:00
|
|
|
|