41 lines
927 B
Text
41 lines
927 B
Text
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<link href="https://fonts.googleapis.com/css?family=Ubuntu:400,700&subset=cyrillic-ext" rel="stylesheet">
|
||
|
<title>$(AppName)</title>
|
||
|
<meta name="robots" content="index,follow">
|
||
|
|
||
|
<style>
|
||
|
body {
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar {
|
||
|
width: 5px;
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar-track {
|
||
|
background: #ddd;
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar-thumb {
|
||
|
background: #666;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div id="app"></div>
|
||
|
</body>
|
||
|
|
||
|
<% if (htmlWebpackPlugin.options.env.websiteId) { %>
|
||
|
<script async src="https://wa.romanjaros.dev/script.js"
|
||
|
data-website-id="<%= htmlWebpackPlugin.options.env.websiteId %>">
|
||
|
</script>
|
||
|
<% } %>
|
||
|
|
||
|
</html>
|