0%

7. jekyll添加网易云音乐

非常简单

1. 在_layouts/post.html中添加如下代码

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
30
31
32
33
34
35
36
{% if page.musicId %}
<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=330 height=86 src="//music.163.com/outchain/player?type=2&id={{ page.musicId }}&auto=1&height=66"></iframe>
</p>

<p align = 'center'>
<font size="4px" face = "隶书">
<style>
.vertical_line {
width: 600px;
height: 60px;
background-color: #ffffff;
border-left: 5px solid #ddd;
text-align: left;
opacity: 0.4;

/* text- */
}
</style>
<!-- <div style="text-align: center">
<i>
<span style="background-color:#F5F5DC;">都说音乐</span>
</i>
</div> -->
<div class="vertical_line">
<strong>
<font size = 4 face="楷体">
<p class="thick">
“听说音乐能让人愉悦”<br/>“你也来试试吧......”
</p>
</font>
</strong>

</p>
</font>
</div>
{% endif %}

2. 在_posts的文件中的头文件添加:musicId: <id>

如:

1
2
3
4
5
6
7
---
title: jekyll添加网易云音乐
description: 在jekyll如何添加网易云音乐
date: 2019-1-21
tags: Github
musicId: 27808044
---