persea/build/template.ejs

26 lines
751 B
Plaintext
Raw Normal View History

2022-03-20 17:12:19 -05:00
<!DOCTYPE html>
<html lang="<%= htmlWebpackPlugin.options.lang %>">
<head>
<base href="/" />
<meta charset="utf-8">
2022-04-04 07:16:26 -05:00
<link rel="icon" type="image/png" href="/icon.png" />
2022-03-20 17:12:19 -05:00
<meta name="viewport" content="width=device-width, user-scalable=no" />
2022-04-02 13:09:03 -05:00
<title>Persea</title>
2022-03-20 17:12:19 -05:00
<style>
html {
background-color: #212121;
2022-04-05 12:19:09 -05:00
color: #ffffff;
2022-03-20 17:12:19 -05:00
}
</style>
2023-11-30 18:55:00 -06:00
<%= htmlWebpackPlugin.tags.headTags %>
<% styleFiles.forEach(({content, href}) => { %>
<style data-href="<%= href %>"><%= content %></style>
<% }); %>
2022-03-20 17:12:19 -05:00
</head>
<body>
<div id="<%= htmlWebpackPlugin.options.appMountId %>"></div>
<script src="/flecks.config.js"></script>
<%= htmlWebpackPlugin.tags.bodyTags %>
</body>
</html>