35 lines
721 B
HTML
35 lines
721 B
HTML
|
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||
|
<title>{{.Title}}</title>
|
||
|
<meta name="keywords" content="{{.Keywords}}" />
|
||
|
<meta name="description" content="{{.Desc}}" />
|
||
|
|
||
|
{{.CssJs}}
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
|
||
|
{{.Content}}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
<!--对接客服代码-->
|
||
|
<script src="/static/js/kefu-front.js?v=2"></script>
|
||
|
<script>
|
||
|
KEFU.init({
|
||
|
KEFU_URL:"",
|
||
|
KEFU_KEFU_ID: "kefu2",
|
||
|
KEFU_ENT: "2",
|
||
|
KEFU_BTN_TEXT: "LIVE CHAT",
|
||
|
KEFU_LANG:"{{.Lang}}",
|
||
|
KEFU_SIMPLE_ICON:true,
|
||
|
})
|
||
|
</script>
|
||
|
<!--//对接客服代码-->
|
||
|
</body>
|
||
|
</html>
|