home.html 1.5 KB
Newer Older
A
Asher 已提交
1 2 3 4
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
A
Anmol Sethi 已提交
5 6 7 8 9
    <meta
      name="viewport"
      content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"
    />
    <meta http-equiv="Content-Security-Policy" content="style-src 'self'; manifest-src 'self'; img-src 'self' data:;" />
A
Asher 已提交
10
    <title>code-server</title>
A
Asher 已提交
11
    <link rel="icon" href="{{BASE}}/static-{{COMMIT}}/src/browser/media/favicon.ico" type="image/x-icon" />
A
Anmol Sethi 已提交
12 13 14 15 16
    <link
      rel="manifest"
      href="{{BASE}}/static-{{COMMIT}}/src/browser/media/manifest.json"
      crossorigin="use-credentials"
    />
A
Asher 已提交
17
    <link rel="apple-touch-icon" href="{{BASE}}/static-{{COMMIT}}/src/browser/media/code-server.png" />
A
Anmol Sethi 已提交
18 19
    <link href="{{BASE}}/static-{{COMMIT}}/dist/app.css" rel="stylesheet" />
    <meta id="coder-options" data-settings="{{OPTIONS}}" />
A
Asher 已提交
20 21
  </head>
  <body>
A
Asher 已提交
22
    <div class="center-container">
A
Asher 已提交
23 24
      <div class="info-blocks">
        <div class="info-block">
A
Asher 已提交
25 26 27 28
          <h2 class="header">Running Applications</h2>
          {{APP_LIST:RUNNING}}
        </div>

A
Asher 已提交
29 30 31 32 33 34
        <div class="info-block">
          <h2 class="header">Update</h2>
          {{UPDATE:NAME}}
        </div>

        <div class="info-block">
A
Asher 已提交
35 36 37 38
          <h2 class="header">Editors</h2>
          {{APP_LIST:EDITORS}}
        </div>

A
Asher 已提交
39
        <div class="info-block">
A
Asher 已提交
40 41 42 43 44
          <h2 class="header">Other</h2>
          {{APP_LIST:OTHER}}
        </div>
      </div>
    </div>
A
Asher 已提交
45 46
  </body>
</html>