1. new look of the mobile menu

2. fix bugs
This commit is contained in:
hwy0127@gmail.com
2019-06-26 16:23:08 +08:00
parent 6b07467dc6
commit 6656cb8c6f
24 changed files with 408 additions and 221 deletions

8
scripts/url_check.js Normal file
View File

@@ -0,0 +1,8 @@
hexo.extend.helper.register('url_check', function (p) {
let src = p ;
let reg = /^https?/ig;
return reg.test(src)
})