Chromium Code Reviews| Index: components/data_reduction_proxy/content/resources/interstitial.html |
| diff --git a/components/data_reduction_proxy/content/resources/interstitial.html b/components/data_reduction_proxy/content/resources/interstitial.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f0a8714875b056fb2cf4b608370db0615d0bd67a |
| --- /dev/null |
| +++ b/components/data_reduction_proxy/content/resources/interstitial.html |
| @@ -0,0 +1,28 @@ |
| +<!DOCTYPE html> |
|
bengr
2015/02/05 01:30:09
Do we put a copyright notice on html?
megjablon
2015/02/13 01:48:09
Nope.
|
| +<html i18n-values="dir:textdirection;.style.fontSize:fontsize"> |
| + <head> |
| + <meta charset="utf-8"> |
| + <meta name="viewport" |
| + content="initial-scale=1, minimum-scale=1, width=device-width"> |
| + <title i18n-content="tabTitle"></title> |
| + <link rel="stylesheet" href="interstitial.css"> |
| + <script src="../../../../ui/webui/resources/js/util.js"></script> |
| + <script src="../../../../ui/webui/resources/js/load_time_data.js"></script> |
| + <script src="data_reduction_proxy.js"></script> |
| + <script src="interstitial.js"></script> |
| + </head> |
| +<body id="body" i18n-values=".style.fontFamily:fontfamily"> |
| + <div class="interstitial-wrapper"> |
| + <div class="icon" id="icon"></div> |
| + <div id="main-message"> |
| + <h1 i18n-content="heading"></h1> |
| + <p i18n-values=".innerHTML:primaryParagraph"></p> |
| + <p i18n-values=".innerHTML:secondaryParagraph"></p> |
| + </div> |
| + <div class="nav-wrapper"> |
| + <button i18n-content="primaryButtonText" id="primary-button"></button> |
| + <button i18n-content="secondaryButtonText" id="secondary-button"></button> |
| + </div> |
| + </div> |
| +</body> |
| +</html> |