mirror of
https://github.com/tsl0922/ttyd.git
synced 2025-12-24 20:54:21 +01:00
19 lines
671 B
HTML
19 lines
671 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<title><%= htmlWebpackPlugin.options.title %></title>
|
|
<link inline rel="icon" type="image/png" href="favicon.png">
|
|
<% for (const css in htmlWebpackPlugin.files.css) { %>
|
|
<link inline rel="stylesheet" type="text/css" href="<%= htmlWebpackPlugin.files.css[css] %>">
|
|
<% } %>
|
|
</head>
|
|
<body>
|
|
<% for (const js in htmlWebpackPlugin.files.js) { %>
|
|
<script inline type="text/javascript" src="<%= htmlWebpackPlugin.files.js[js] %>"></script>
|
|
<% } %>
|
|
</body>
|
|
</html>
|