dispatch/server/index.egon

76 lines
1.7 KiB
Plaintext
Raw Normal View History

2018-11-09 05:30:31 +00:00
<%! data *indexData, cssPath string, inlineScript string, scripts []string, sw
bool %> <%% import "github.com/mailru/easyjson" %%>
2016-03-16 22:23:16 +00:00
<!DOCTYPE html>
<html lang="en">
2018-11-09 05:30:31 +00:00
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#f0f0f0" />
2018-11-09 05:30:31 +00:00
<title>Dispatch</title>
2018-09-18 20:09:08 +00:00
2018-11-09 05:30:31 +00:00
<% if sw { %>
<link rel="preload" href="/data" as="fetch" crossorigin="anonymous" />
<% } %>
2018-11-06 10:13:32 +00:00
2018-11-09 05:30:31 +00:00
<script>
<%== inlineScript %>
</script>
2018-11-09 05:30:31 +00:00
<link
rel="preload"
href="/font/fontello.woff2?48901973"
as="font"
type="font/woff2"
crossorigin="anonymous"
/>
<link
rel="preload"
href="/font/RobotoMono-Regular.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous"
/>
<link
rel="preload"
href="/font/Montserrat-Regular.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous"
/>
<link
rel="preload"
href="/font/Montserrat-Bold.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous"
/>
<link
rel="preload"
href="/font/RobotoMono-Bold.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous"
/>
2018-11-09 05:30:31 +00:00
<% if cssPath != "" { %>
<link href="<%== cssPath %>" rel="stylesheet" />
<% } %>
2018-11-06 10:13:32 +00:00
2018-11-09 05:30:31 +00:00
<link rel="icon" href="data:;base64,=" />
</head>
2018-11-06 10:13:32 +00:00
2018-11-09 05:30:31 +00:00
<body>
<div id="root"></div>
2018-11-09 05:30:31 +00:00
<% if data != nil { %>
<script id="env" type="application/json">
<% easyjson.MarshalToWriter(data, w) %>
</script>
<% } %> <% for _, script := range scripts { %>
<script src="<%== script %>"></script>
<% } %>
</body>
2016-03-16 22:23:16 +00:00
</html>