Skip to content

Commit 7cb0ca3

Browse files
committed
add new
1 parent a11eeca commit 7cb0ca3

File tree

11 files changed

+954
-14
lines changed

11 files changed

+954
-14
lines changed

postcss.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ const autoprefixer = require('autoprefixer');
22
const browserslist = require('browserslist');
33

44
module.exports = {
5-
plugins: [autoprefixer({browsers: browserslist('last 2 version, > 0.1%')})]
5+
plugins: [autoprefixer({ browsers: browserslist('last 2 version, > 0.1%') })]
66
};

src/components/navigation.vue

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</a>
77
<div class="face-wrap">
88
<router-link to="/" >
9-
<img src="/static/images/me.jpg" height="144" width="144">
9+
<img src="/static/images/me.jpg" alt="fakerli" height="144" width="144">
1010
</router-link>
1111
<span>fakerli's blog</span>
1212
</div>
@@ -41,22 +41,22 @@
4141
<div class="link-wrap">
4242
<ul class="ul-buttons">
4343
<li>
44-
<a class="inline" rel="nofollow" target="_blank" href="mailto:[email protected]">
44+
<a class="inline" rel="nofollow noopener noreferrer" target="_blank" href="mailto:[email protected]">
4545
<i class="fa fa-envelope" title="邮箱"></i>
4646
</a>
4747

4848

49-
<a class="inline" rel="nofollow" target="_blank" href="https://www.zhihu.com/people/lichang" rel="noopener">
49+
<a class="inline" rel="nofollow noopener noreferrer" target="_blank" href="https://www.zhihu.com/people/lichang">
5050
<i class="fa fa-clone" title="知乎"></i>
5151
</a>
5252

5353

54-
<a class="inline" rel="nofollow" target="_blank" href="https://github.com/lc11235" rel="noopener">
54+
<a class="inline" rel="nofollow noopener noreferrer" target="_blank" href="https://github.com/lc11235">
5555
<i class="fa fa-github" title="Github"></i>
5656
</a>
5757

5858

59-
<a class="inline" rel="nofollow" target="_blank" href="https://www.fakerli.com/rss.html" rel="noopener">
59+
<a class="inline" rel="nofollow noopener noreferrer" target="_blank" href="https://www.fakerli.com/rss.html">
6060
<i class="fa fa-rss" title="RSS"></i>
6161
</a>
6262
</li>

src/components/search.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</div>
2727
<div class="search-modal-footer">
2828
<span class="power-by">Powered by</span>
29-
<a rel="nofollow" target="_blank" href="https://www.elastic.co/products/elasticsearch" class="elastic-logo" rel="noopener">ElasticSearch</a>
29+
<a rel="nofollow noopener noreferrer" target="_blank" href="https://www.elastic.co/products/elasticsearch" class="elastic-logo">ElasticSearch</a>
3030
</div>
3131
</div>
3232
</div>

src/template/admin.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<body>
1616
<!--[if lte IE 9]><span class="global-warning active">本网站不支持IE系列浏览器, 请使用 <a target="_blank" href="http://sw.bos.baidu.com/sw-search-sp/software/fc14f1545b7/ChromeStandalone_51.0.2704.106_Setup.exe">Chrome</a> , <a href="http://www.firefox.com.cn/download/" target="_blank">Firefox</a>, <a href="http://chrome.360.cn/" target="_blank">360浏览器</a> 等非IE浏览器访问本站!</span><![endif]-->
1717
<div id="app"></div>
18-
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
19-
<script src="https://cdn.bootcss.com/three.js/89/three.min.js"></script>
18+
<script src="/static/jquery/3.3.1/jquery.min.js"></script>
19+
<script src="/static/three.js/89/three.min.js"></script>
2020
<script src="/static/three/renderers/Projector.js"></script>
2121
<script src="/static/three/renderers/CanvasRenderer.js"></script>
2222
<script src="/static/jquery.timers.js"></script>

src/template/server.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no"/>
88
<meta name="Keywords" content="fakerli, blog"/>
99
<meta name="description" content="{{ description }}">
10-
<link type="text/css" rel="stylesheet" href="/static/editor.md/css/editormd.preview.css" />
11-
<link type="text/css" rel="stylesheet" href="https://cdn.bootcss.com/KaTeX/0.9.0-beta1/katex.min.css">
12-
<link type="text/css" rel="stylesheet" href="https://cdn.bootcss.com/gitalk/1.2.2/gitalk.min.css">
10+
<link type="text/css" rel="stylesheet" href="/static/editor.md/css/editormd.preview.min.css" />
11+
<link type="text/css" rel="stylesheet" href="/static/katex/katex.min.css">
12+
<link type="text/css" rel="stylesheet" href="/static/gitalk/1.2.2/gitalk.min.css">
1313
</head>
1414
<body>
1515
<!--vue-ssr-outlet-->
16-
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
17-
<script src="https://cdn.bootcss.com/gitalk/1.2.2/gitalk.min.js"></script>
16+
<script src="/static/jquery/3.3.1/jquery.min.js"></script>
17+
<script src="/static/gitalk/1.2.2/gitalk.min.js"></script>
1818
</body>
1919
</html>

static/gitalk/1.2.2/gitalk.min.css

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/gitalk/1.2.2/gitalk.min.js

+20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/images/me.jpg

-25.6 KB
Loading

static/jquery/3.3.1/jquery.min.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/katex/katex.min.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)