UNPKG

@diagramers/admin

Version:

Diagramers Admin Template - React starter for admin dashboards.

97 lines (90 loc) 4.89 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> <title>{{projectName}}</title> <!-- Favicon Tags Start --> <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/favicon/apple-touch-icon-57x57.png" /> <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/favicon/apple-touch-icon-114x114.png" /> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/favicon/apple-touch-icon-72x72.png" /> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/favicon/apple-touch-icon-144x144.png" /> <link rel="apple-touch-icon-precomposed" sizes="60x60" href="/img/favicon/apple-touch-icon-60x60.png" /> <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/favicon/apple-touch-icon-120x120.png" /> <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/favicon/apple-touch-icon-76x76.png" /> <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/favicon/apple-touch-icon-152x152.png" /> <link rel="icon" type="image/png" href="/img/favicon/favicon-196x196.png" sizes="196x196" /> <link rel="icon" type="image/png" href="/img/favicon/favicon-96x96.png" sizes="96x96" /> <link rel="icon" type="image/png" href="/img/favicon/favicon-32x32.png" sizes="32x32" /> <link rel="icon" type="image/png" href="/img/favicon/favicon-16x16.png" sizes="16x16" /> <link rel="icon" type="image/png" href="/img/favicon/favicon-128.png" sizes="128x128" /> <meta name="application-name" content="&nbsp;" /> <meta name="msapplication-TileColor" content="#FFFFFF" /> <meta name="msapplication-TileImage" content="/img/favicon/mstile-144x144.png" /> <meta name="msapplication-square70x70logo" content="/img/favicon/mstile-70x70.png" /> <meta name="msapplication-square150x150logo" content="/img/favicon/mstile-150x150.png" /> <meta name="msapplication-wide310x150logo" content="/img/favicon/mstile-310x150.png" /> <meta name="msapplication-square310x310logo" content="/img/favicon/mstile-310x310.png" /> <!-- Favicon Tags End --> <!-- Font Tags Start --> <link rel="preconnect" href="https://fonts.gstatic.com" /> <link href="https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600&display=swap" rel="stylesheet" /> <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap" rel="stylesheet" /> <link rel="stylesheet" href="/font/CS-Interface/style.css" /> <!-- Font Tags End --> <!-- Vendor Styles Start --> <link rel="stylesheet" href="/css/vendor/bootstrap.min.css" /> <link rel="stylesheet" href="/css/vendor/OverlayScrollbars.min.css" /> <link rel="stylesheet" href="/css/vendor/plyr.css"> <!-- Template Base Styles Start --> <link rel="stylesheet" href="/css/styles.css" /> <!-- Template Base Styles End --> <link rel="stylesheet" href="/css/main.css" /> <script> // Remove blocking iframe overlays function removeBlockingIframes() { const iframes = document.querySelectorAll('iframe'); iframes.forEach(iframe => { const style = iframe.getAttribute('style') || ''; if (style.includes('z-index: 2147483647') || style.includes('z-index:2147483647') || (style.includes('position: fixed') && style.includes('width: 100%') && style.includes('height: 100%'))) { iframe.remove(); } }); } // Run immediately and also set up a mutation observer removeBlockingIframes(); // Watch for new iframes being added const observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { if (mutation.type === 'childList') { removeBlockingIframes(); } }); }); // Start observing when DOM is ready if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', function() { observer.observe(document.body, { childList: true, subtree: true }); }); } else { observer.observe(document.body, { childList: true, subtree: true }); } </script> </head> <body> <noscript>You need to enable JavaScript to run this app.</noscript> <div id="root"></div> <!-- This HTML file is a template. If you open it directly in the browser, you will see an empty page. You can add webfonts, meta tags, or analytics to this file. The build step will place the bundled scripts into the <body> tag. To begin the development, run `npm start` or `yarn start`. To create a production bundle, use `npm run build` or `yarn build`. --> </body> </html>