mirror of
https://shylinux.com/x/icebergs
synced 2025-04-27 09:48:28 +08:00
18 lines
290 B
Go
18 lines
290 B
Go
package web
|
|
|
|
var share_template = map[string]interface{}{
|
|
"shy/story": `{{}}`,
|
|
"shy/chain": `<!DOCTYPE html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" text="text/css" href="/style.css">
|
|
</head>
|
|
<body>
|
|
<fieldset>
|
|
{{.Append "type"}}
|
|
{{.Append "text"}}
|
|
</fieldset>
|
|
</body>
|
|
`,
|
|
}
|