-
Notifications
You must be signed in to change notification settings - Fork 17
/
common.jade
29 lines (29 loc) · 1.28 KB
/
common.jade
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
doctype html
html(lang="zh-CN")
head
title #{title}
meta(name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=0")
meta(name='keywords' content="博客,后台管理系统,个人博客")
meta(name='description' content="一个博客管理系统,可以注册拥有自己的博客,具有编辑实时预览,发布文章等后台管理功能")
link(rel="icon" href="/public/favicon.ico")
script(async src='https://www.googletagmanager.com/gtag/js?id=UA-109240313-1')
script(type='text/javascript').
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-109240313-1');
script(type='text/javascript').
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?c15e73a33696ca60d3c3f1b5a3500233";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
body(id='main')
waiting(v-if='waiting')
pop(v-show='pop')
component(:is='bg')
router-view
script(src='/public/common.build.js')
//- script(src='http://127.0.0.1:8080/public/common.build.js')