-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
27 lines (22 loc) · 837 Bytes
/
index.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<!-- Polymer imports -->
<script>Polymer = {dom: 'shadow'};</script>
<link rel="import" href="elements/browser-topbar/browser-topbar.html">
<link rel="import" href="elements/browser-header/browser-header.html">
<link rel="import" href="elements/browser-content/browser-content.html">
<!-- Native styles -->
<link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
<link rel="stylesheet" href="chrome://resources/css/roboto.css">
<!-- App global resources -->
<link rel="stylesheet" href="index.css">
<script type="text/javascript" src="index.js"></script>
</head>
<body>
<browser-topbar></browser-topbar>
<browser-header></browser-header>
<browser-content></browser-content>
</body>
</html>