summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/webapks/about_webapks.html
blob: f09ce2c5d087d7620b5c18dc862e7ddcc88695e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!doctype html>

<!--
about:webapks template page
-->

<html lang="en" dir="ltr">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width">
    <title>About WebAPKs</title>
    <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
    <link rel="stylesheet" href="about_webapks.css">
    <link rel="import" href="chrome://resources/html/cr.html">
    <link rel="import" href="chrome://resources/html/load_time_data.html">
    <link rel="import" href="chrome://resources/html/util.html">

    <script src="chrome://webapks/webapks.js"></script>
    <script src="chrome://webapks/strings.js"></script>
  </head>

  <body>
    <div id="outer">
      <div>
        <span class="label">WebAPKs:</span>
      </div>

      <div class="content" id="webapk-list"></div>
    </div>
  </body>
</html>