├── README.md
├── bower.json
├── core-scaffold.html
├── demo.html
├── index.html
└── metadata.html
/README.md:
--------------------------------------------------------------------------------
1 | core-scaffold
2 | =============
3 |
4 | See the [component page](https://www.polymer-project.org/0.5/docs/elements/core-scaffold.html) for more information.
5 |
--------------------------------------------------------------------------------
/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "core-scaffold",
3 | "private": true,
4 | "dependencies": {
5 | "core-drawer-panel": "Polymer/core-drawer-panel#master",
6 | "core-header-panel": "Polymer/core-header-panel#master",
7 | "core-icon-button": "Polymer/core-icon-button#master",
8 | "core-toolbar": "Polymer/core-toolbar#master"
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/core-scaffold.html:
--------------------------------------------------------------------------------
1 |
9 |
10 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
125 |
126 |
127 |
128 |
129 |
252 |
253 |
--------------------------------------------------------------------------------
/demo.html:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 | core-scaffold
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 | Application
69 |
70 |
71 |
72 |
73 |
74 |
75 | Title
76 |
77 | Content goes here...
78 |
79 |
80 |
81 |
82 |
83 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/metadata.html:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | Title
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
--------------------------------------------------------------------------------