river-of-ebooks/assets/templates/admin.html

19 lines
658 B
HTML
Raw Permalink Normal View History

<% var key, item %>
<% htmlWebpackPlugin.options.links = htmlWebpackPlugin.options.links || [] %>
<!DOCTYPE html>
2019-03-13 16:55:35 +00:00
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>River of Ebooks | admin</title>
<base href="/">
<% for (item of htmlWebpackPlugin.options.links) {
if (typeof item === 'string' || item instanceof String) { item = { href: item, rel: 'stylesheet' } } %>
<link<% for (key in item) { %> <%= key %>="<%= item[key] %>"<% } %> /><%
} %>
2019-03-13 16:55:35 +00:00
<meta name="viewport" content="initial-scale=1, width=device-width, maximum-scale=1, minimum-scale=1" />
</head>
<body>
<div id="root"></div>
</body>
</html>