netplay-lobby-server-go/web/templates/index.html
2024-12-24 22:42:37 +08:00

60 lines
2.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>RetroArch 大厅</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://netplay.sanc.top:88/css/bootstrap.min.css">
<link rel="icon" href="http://netplay.sanc.top:88/images/ic_launcher.png" sizes="32x32"/>
<link rel="icon" href="http://netplay.sanc.top:88/images/ic_launcher.png" sizes="192x192"/>
<link rel="apple-touch-icon-precomposed" href="images/ic_launcher.png"/>
</head>
<body>
<div class="container">
<div>
<h1>RetroArch 大厅</h1>
<p>当前在 <a href="http://libretro.com">RetroArch</a> 中可用的联网游戏房间。</p>
<hr class="my-4">
<p class="lead">
<a class="btn btn-primary btn-lg"
href="https://www.libretro.com/" role="button">RetroArch</a>
<a class="btn btn-info btn-lg"
href="https://www.youtube.com/watch?v=oh7hhoOBg54" role="button">如何加入</a>
<a class="btn btn-info btn-lg"
href="https://www.youtube.com/watch?v=n6aF0wNcm7E" role="button">如何做主机</a>
</p>
</div>
{{ if . }}
<table class="table"><thead><tr>
<th></th><th>别名</th><th>游戏</th><th>积分</th><th>是否公开</th><th>版本</th><th>创建时间</th>
</tr></thead><tbody>
{{ range $key, $session := . }}
<tr>
{{ if $session.Country }}<td><img height="25" title="{{ $session.Country }}" alt="{{ $session.Country }}" src="flags/{{ $session.Country }}.svg"></td>{{ else }}<td></td>{{ end }}
<th>{{ $session.Username }}</th>
<td>{{ $session.GameName }}</td>
<td>{{ $session.CoreName }} {{ $session.CoreVersion }}</td>
<td>{{ prettyBool $session.HasPassword }}</td>
{{ if $session.RetroArchVersion }}
<td>{{ $session.RetroArchVersion }}</td>
{{ else }}
<td>n/a</td>
{{ end }}
<td>{{ prettyDate $session.CreatedAt }}</td>
</tr>
{{ end }}
</tbody></table>
{{ else }}
<div class="alert alert-info" role="alert">当前没有开放的大厅。</div>
{{ end }}
<div class="alert alert-dark" role="alert">
此服务器根据 AGPLv3 许可证授权。源代码可以在 <a href="https://github.com/libretro/netplay-lobby-server-go">github</a> 上找到。</br>
本产品包含由 <a href="https://www.maxmind.com">MaxMind</a> 创建的 GeoLite2 数据。
</div>
</div>
<script src="http://netplay.sanc.top:88/js/jquery-3.2.1.slim.min.js"></script>
<script src="http://netplay.sanc.top:88/js/popper.min.js"></script>
<script src="http://netplay.sanc.top:88/js/bootstrap.min.js"></script>
</body>
</html>