Index: chrome/browser/resources/md_policy/policy_ui.html |
diff --git a/chrome/browser/resources/md_policy/policy_ui.html b/chrome/browser/resources/md_policy/policy_ui.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..92a45770c33463c07f590b2370ee47576ff0946a |
--- /dev/null |
+++ b/chrome/browser/resources/md_policy/policy_ui.html |
@@ -0,0 +1,19 @@ |
+<link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
+ |
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-card/paper-card.html"> |
+ |
+<link rel="import" href="chrome://md-policy/policy_group.html"> |
Dan Beam
2015/10/10 01:04:18
why \n's between imports?
fhorschig
2015/10/13 16:29:11
Reduced. The \n should separate different origins.
|
+ |
+<dom-module id="policy-ui"> |
+ <link rel="import" type="css" href="chrome://md-policy/policy_ui.css"> |
+ <template> |
+ <paper-card id="introduction" |
+ heading="[[introduction.title]]" |
+ aria-label="[[introduction.title]]"> |
+ <div class="card-content">[[introduction.text]]</div> |
+ </paper-card> |
+ <div id="groups"> |
+ </div> |
Dan Beam
2015/10/10 01:04:18
<div id="groups"></div>
fhorschig
2015/10/13 16:29:11
Done.
|
+ </template> |
+ <script src="policy_ui.js"></script> |
+</dom-module> |