60 lines
3.5 KiB
HTML
60 lines
3.5 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="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
|
<link rel="icon" href="https://www.libretro.com/wp-content/uploads/2016/01/ic_launcher.png" sizes="32x32"/>
|
|
<link rel="icon" href="https://www.libretro.com/wp-content/uploads/2016/01/ic_launcher.png" sizes="192x192"/>
|
|
<link rel="apple-touch-icon-precomposed" href="https://www.libretro.com/wp-content/uploads/2016/01/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="https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.4.3/flags/1x1/{{ $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="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
|
</body>
|
|
</html>
|