mirror of
https://shylinux.com/x/icebergs
synced 2025-04-27 09:48:28 +08:00
21 lines
327 B
Go
21 lines
327 B
Go
package web
|
|
|
|
import (
|
|
"github.com/shylinux/toolkits"
|
|
)
|
|
|
|
var share_template = kit.Dict(
|
|
"share", `<a href="/share/%s" target="_blank">%s</a>`,
|
|
"qrcode", `<img src="/share/%s/qrcode">`,
|
|
|
|
"simple", `<!DOCTYPE html>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<title>{{.Option "name"}}</title>
|
|
</head>
|
|
<body>
|
|
{{.Option "text"}}
|
|
</body>
|
|
`,
|
|
)
|