mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 04:55:33 +03:00
51 lines
1.8 KiB
HTML
51 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
|
<meta name="google" content="notranslate">
|
|
<meta http-equiv="x-dns-prefetch-control" content="off">
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="assets/apple-touch-icon-180x180.png" />
|
|
<link rel="mask-icon" href="assets/safari-pinned-tab.svg" color="#67B279">
|
|
<link rel="icon" type="image/png" href="assets/favicon.png" sizes="48x48">
|
|
<title>AdGuard Home</title>
|
|
<style>
|
|
.wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
[data-theme="DARK"] .wrapper {
|
|
background-color: #f5f7fb;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
You need to enable JavaScript to run this app.
|
|
</noscript>
|
|
<div id="root">
|
|
<div class="wrapper"></div>
|
|
</div>
|
|
<script>
|
|
(function() {
|
|
var LOCAL_STORAGE_THEME_KEY = 'account_theme';
|
|
var theme = 'light';
|
|
|
|
try {
|
|
theme = window.localStorage.getItem(LOCAL_STORAGE_THEME_KEY);
|
|
} catch(e) {
|
|
console.error(e);
|
|
}
|
|
|
|
document.body.dataset.theme = theme;
|
|
})();
|
|
</script>
|
|
</body>
|
|
</html>
|