- 启动时生成 AssetVersion(base36 时间戳),注入模板 {{.V}}
- 所有 JS/CSS 引用加 ?v={{.V}},重启即刷新缓存
- 涉及前端、管理后台共 12 个模板文件
22 lines
843 B
HTML
22 lines
843 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{{if .CSRFToken}}<meta name="csrf-token" content="{{.CSRFToken}}">{{end}}
|
|
{{if .OgTitle}}
|
|
<meta property="og:title" content="{{.OgTitle}}">
|
|
<meta property="og:type" content="article">
|
|
<meta property="og:site_name" content="MetaLab">
|
|
{{if .OgDescription}}<meta property="og:description" content="{{.OgDescription}}">{{end}}
|
|
{{if .OgImage}}<meta property="og:image" content="{{.OgImage}}">{{end}}
|
|
{{if .OgURL}}<meta property="og:url" content="{{.OgURL}}">{{end}}
|
|
{{end}}
|
|
<title>{{.Title}} - MetaLab</title>
|
|
<link rel="stylesheet" href="/static/css/common.css?v={{.V}}">
|
|
{{if .ExtraCSS}}
|
|
<link rel="stylesheet" href="{{.ExtraCSS}}?v={{.V}}">
|
|
{{end}}
|
|
<script src="/shared/static/js/utils.js"></script>
|
|
</head>
|