humus/build/template.ejs
2024-01-09 22:58:10 -06:00

25 lines
711 B
Plaintext

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