persea/build/template.ejs
2022-04-05 12:19:09 -05:00

27 lines
717 B
Plaintext

<!DOCTYPE html>
<html lang="<%= htmlWebpackPlugin.options.lang %>">
<head>
<base href="/" />
<meta charset="utf-8">
<link rel="icon" type="image/png" href="/icon.png" />
<meta name="viewport" content="width=device-width, user-scalable=no" />
<title>Persea</title>
<style>
html {
background-color: #212121;
color: #ffffff;
}
</style>
<% if (styleFile) { %>
<style data-href="<%= styleFile.href %>">
<%= styleFile.content %>
</style>
<% } %>
</head>
<body>
<div id="<%= htmlWebpackPlugin.options.appMountId %>"></div>
<script src="/flecks.config.js"></script>
<%= htmlWebpackPlugin.tags.bodyTags %>
</body>
</html>