2016-03-16 22:23:16 +00:00
|
|
|
// Generated by egon.
|
|
|
|
// 🚫Edit at your own risk.
|
|
|
|
|
|
|
|
package server
|
|
|
|
import (
|
|
|
|
"io"
|
2018-05-25 21:54:36 +00:00
|
|
|
"github.com/mailru/easyjson"
|
2016-03-16 22:23:16 +00:00
|
|
|
)
|
|
|
|
|
2018-11-04 06:22:46 +00:00
|
|
|
func IndexTemplate(w io.Writer, data *indexData, cssPath string, inlineScript string, scripts []string) error {
|
|
|
|
io.WriteString(w, "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"UTF-8\"><meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"><meta name=\"theme-color\" content=\"#222\"><title>Dispatch</title><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\">")
|
|
|
|
if cssPath != "" {
|
|
|
|
io.WriteString(w, "<link href=\"/")
|
2016-03-16 22:23:16 +00:00
|
|
|
io.WriteString(w, cssPath )
|
2018-11-04 06:22:46 +00:00
|
|
|
io.WriteString(w, "\" rel=\"stylesheet\">")
|
|
|
|
}
|
|
|
|
io.WriteString(w, "<link rel=\"icon\" href=\"data:;base64,=\"><script>")
|
|
|
|
io.WriteString(w, inlineScript )
|
|
|
|
io.WriteString(w, "</script></head><body><div id=\"root\"></div><script id=\"env\" type=\"application/json\">")
|
2018-05-25 21:54:36 +00:00
|
|
|
easyjson.MarshalToWriter(data, w)
|
2018-11-04 06:22:46 +00:00
|
|
|
io.WriteString(w, "</script>")
|
|
|
|
for _, script := range scripts {
|
|
|
|
io.WriteString(w, "<script src=\"/")
|
|
|
|
io.WriteString(w, script )
|
|
|
|
io.WriteString(w, "\"></script>")
|
|
|
|
}
|
|
|
|
io.WriteString(w, "</body></html>")
|
2016-03-16 22:23:16 +00:00
|
|
|
return nil
|
|
|
|
}
|