mirror of
https://github.com/elyby/emails-renderer.git
synced 2024-12-23 13:49:48 +05:30
24 lines
666 B
Plaintext
24 lines
666 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Ely.by - Email Renderer</title>
|
|
<meta name="viewport" content="width=device-width" />
|
|
|
|
<% if (htmlWebpackPlugin.files.favicon) { %>
|
|
<link rel="shortcut icon" href="<%= htmlWebpackPlugin.files.favicon %>">
|
|
<% } %>
|
|
</head>
|
|
<body style="margin: 0">
|
|
|
|
<div id="app" class="app"></div>
|
|
|
|
<% for (var css in htmlWebpackPlugin.files.css) { %>
|
|
<link href="<%= htmlWebpackPlugin.files.css[css] %>" rel="stylesheet">
|
|
<% } %>
|
|
<% for (var chunk in htmlWebpackPlugin.files.chunks) { %>
|
|
<script src="<%= htmlWebpackPlugin.files.chunks[chunk].entry %>"></script>
|
|
<% } %>
|
|
</body>
|
|
</html>
|