2016-03-16 22:23:16 +00:00
|
|
|
<%! data *indexData, cssPath, jsPath string %>
|
|
|
|
|
|
|
|
<%% import "encoding/json" %%>
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
|
|
<title>Dispatch</title>
|
|
|
|
|
|
|
|
<link href="/<%== cssPath %>" rel="stylesheet">
|
2017-03-23 19:55:34 +00:00
|
|
|
<link rel="icon" href="data:;base64,=">
|
2016-03-16 22:23:16 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="root"></div>
|
|
|
|
<script id="env" type="application/json"><% json.NewEncoder(w).Encode(data) %></script>
|
|
|
|
<script src="/<%== jsPath %>"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|