web_app_default_offline.html 1009 B

123456789101112131415161718192021222324
  1. <!doctype html>
  2. <html dir="$i18n{textdirection}" lang="$i18n{language}">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>$i18n{title}</title>
  6. <link rel="stylesheet" href="../security_interstitials/core/common/resources/interstitial_core.css">
  7. <link rel="stylesheet" href="../security_interstitials/core/common/resources/interstitial_common.css">
  8. <link rel="stylesheet" href="web_app_default_offline.css">
  9. <style>
  10. :root {
  11. --customized-background-color: $i18n{customized_background_color};
  12. --theme-color: $i18n{theme_color};
  13. --dark-mode-background-color: $i18n{dark_mode_background_color};
  14. --dark-mode-theme-color: $i18n{dark_mode_theme_color};
  15. }
  16. </style>
  17. </head>
  18. <body style="font-family: $i18n{fontfamily};font-size:$i18n{fontsize}">
  19. <img id="icon" src=$i18n{icon_url}>
  20. <h1 id="app-name">$i18n{app_short_name}</h1>
  21. <h2 id="default-web-app-msg">$i18n{web_app_default_offline_message}</h2>
  22. <!--TODO(crbug.com/1285723: Add web app icon.)-->
  23. </body>
  24. </html>