Sha256: 6cb4b3cf39ac2ea12e1065dc72bc7bc15cac147dd0308455d57eb91875dee3af

Contents?: true

Size: 1.72 KB

Versions: 2

Compression:

Stored size: 1.72 KB

Contents

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <script src="./js/jquery.min.js"></script>
    <script src="./js/jquery-ui-1.8.16.custom.min.js"></script>
    <script src="./js/jquery.tmpl.min.js"></script>
    <script src="./js/jquery.dataTables.nightly.min.js"></script>
    <script src="./js/vrowser.js"></script>
    <link rel="StyleSheet" href="./css/main.css" />
    <link rel="StyleSheet" href="./css/demo_page.css" />
    <link rel="StyleSheet" href="./css/demo_table.css" />
    <link rel="StyleSheet" href="./css/demo_table_jui.css" />
    <title>Vrowser</title>
  </head>

  <body>
    <div class="container">
      <section>
        <h1 id="subject">Vrowser <a href="https://github.com/kimoto/vrowser/">(source)</a></h1>
        <ul>
          <li>サーバーの行でダブルクリックでログインできます</li>
          <li>プレイヤー名で検索できます</li>
        </ul>

        <table id="servers" class="table-striped zebra-striped">
          <thead>
            <tr>
              <th>サーバー名</th>
              <th>ホスト</th>
              <th>Ping</th>
              <th>人数</th>
              <th>タイプ</th>
              <th>マップ</th>
              <th>プレイヤー</th>
            </tr>
          </thead>
          <tbody>
            <script id="myTemplate" type="text/x-jquery-tmpl">
              <tr>
                <td>${name}</td>
                <td>${host}</td>
                <td>${ping}</td>
                <td>${num_players}</td>
                <td>${type}</td>
                <td>${map}</td>
                <td>${players}</td>
              </tr>
            </script>
          </tbody>
        </table>
      </section>
    </div>
  </body>
</html>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vrowser-0.1.5 public_html/index.html
vrowser-0.1.4 public_html/index.html