|
- <!DOCTYPE html>
- <html lang="">
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width,initial-scale=1.0" />
- <link rel="icon" id="favicon" href="<%= BASE_URL %>favicon.svg" />
- <link rel="stylesheet" href="<%= BASE_URL %>fonts/vazir.css" />
- <script defer src="https://bazarce.liara.run/script.js" data-website-id="7baabdd5-3224-41c1-9267-d2a1abd29d01"></script>
- <title><%= htmlWebpackPlugin.options.title %></title>
- </head>
-
- <body lang>
- <noscript>
- <strong
- >We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work
- properly without JavaScript enabled. Please enable it to
- continue.</strong
- >
- </noscript>
- <div id="app"></div>
-
- <script>
-
- document.addEventListener("DOMContentLoaded", function () {
- const faviconUrl = localStorage.getItem("logo");
- if (faviconUrl) {
- const faviconLink = document.getElementById("favicon");
- faviconLink.href = faviconUrl;
- }
- });
- </script>
- </body>
- </html>
|