humus/build/template.ejs

26 lines
658 B
Plaintext
Raw Normal View History

2022-03-20 19:13:58 -05:00
<!DOCTYPE html>
<html lang="<%= htmlWebpackPlugin.options.lang %>">
<head>
<base href="/" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no" />
2022-04-03 12:02:26 -05:00
<title>Humus</title>
2022-03-20 19:13:58 -05:00
<style>
html {
background-color: #212121;
2022-04-05 12:19:04 -05:00
color: #ffffff;
2022-03-20 19:13:58 -05:00
}
</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>