2018-11-17 10:52:36 +00:00
|
|
|
<%! cssPath string, inlineScript string, scripts []string %>
|
2016-03-16 22:23:16 +00:00
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2018-11-04 06:22:46 +00:00
|
|
|
|
2018-11-10 11:18:45 +00:00
|
|
|
<head>
|
2018-11-14 09:11:15 +00:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta name="theme-color" content="#f0f0f0">
|
2018-11-10 11:18:45 +00:00
|
|
|
|
|
|
|
<title>Dispatch</title>
|
2018-11-14 09:11:15 +00:00
|
|
|
<meta name="description" content="Web-based IRC client.">
|
2018-11-10 11:18:45 +00:00
|
|
|
|
2018-11-17 10:52:36 +00:00
|
|
|
<link rel="preload" href="/init" as="fetch" crossorigin>
|
2018-11-10 11:18:45 +00:00
|
|
|
|
|
|
|
<script>
|
|
|
|
<%== inlineScript %>
|
|
|
|
</script>
|
2018-09-18 20:09:08 +00:00
|
|
|
|
2018-11-14 09:11:15 +00:00
|
|
|
<link rel="preload" href="/font/fontello.woff2?48901973" as="font" type="font/woff2" crossorigin>
|
|
|
|
<link rel="preload" href="/font/RobotoMono-Regular.woff2" as="font" type="font/woff2" crossorigin>
|
|
|
|
<link rel="preload" href="/font/Montserrat-Regular.woff2" as="font" type="font/woff2" crossorigin>
|
|
|
|
<link rel="preload" href="/font/Montserrat-Bold.woff2" as="font" type="font/woff2" crossorigin>
|
|
|
|
<link rel="preload" href="/font/RobotoMono-Bold.woff2" as="font" type="font/woff2" crossorigin>
|
2018-11-06 10:13:32 +00:00
|
|
|
|
2018-11-10 11:18:45 +00:00
|
|
|
<% if cssPath != "" { %>
|
2018-11-22 07:04:04 +00:00
|
|
|
<link href="/<%== cssPath %>" rel="stylesheet">
|
2018-11-10 11:18:45 +00:00
|
|
|
<% } %>
|
2018-11-04 06:22:46 +00:00
|
|
|
|
2018-11-10 11:18:45 +00:00
|
|
|
<link rel="manifest" href="/manifest.json">
|
|
|
|
</head>
|
2018-11-04 06:22:46 +00:00
|
|
|
|
2018-11-10 11:18:45 +00:00
|
|
|
<body>
|
|
|
|
<div id="root"></div>
|
2018-11-06 10:13:32 +00:00
|
|
|
|
2018-11-10 11:18:45 +00:00
|
|
|
<% for _, script := range scripts { %>
|
2018-11-22 07:04:04 +00:00
|
|
|
<script src="/<%== script %>"></script>
|
2018-11-10 11:18:45 +00:00
|
|
|
<% } %>
|
2018-11-14 09:11:15 +00:00
|
|
|
|
|
|
|
<noscript>This page needs JavaScript enabled to function.</noscript>
|
2018-11-10 11:18:45 +00:00
|
|
|
</body>
|
2018-11-04 06:22:46 +00:00
|
|
|
|
2016-03-16 22:23:16 +00:00
|
|
|
</html>
|