0%

Hexo | 发布新页面

新建页面

在文件夹\blog\source\_posts中进行git bash here执行以下命令生成新页面

1
hexo n "name"    # name 文章名称

生成文章后,用编辑器打开name.md,可以这样添加标签和分类

1
2
3
4
5
6
7
---
title: Hexo之NexT主题搭建博客详细过程
date: 2016-10-03 15:39:31
update: 2016-10-04 06:19:11
categories: hexo # 分类
tags: [nodejs, hexo, NexT] # [标签1, 标签2..., 标签n]
---

在description部分加图片和播放器

description 后面必须要有文字,不然首页会全文展示。即使后面加了<!--more-->

1
2
3
4
5
6
7
8
9
description: 重拾记忆<div style="float:left"><img src="https://warmshawn.oss-cn-beijing.aliyuncs.com/Reminiscence/%E5%8C%97%E5%9F%8E/%E6%95%85%E4%B9%A1_490x296.jpg?x-oss-process=style/style1"  width="894" height="312" ></div>

---


<div style="float:none;clear:both;"></div>
{% aplayer "Far away from home" "Groove Coverage" "https://warmshawn-music.oss-cn-beijing.aliyuncs.com/Far%20Away%20From%20Home%20-%20Groove%20Coverage.mp3" "false" %}
<br>
<div style="float:none;clear:both;"></div>

前面的空行看起来很重要

我突然明白,视频点不开,并不是因为路径过长。而是我这设置了盗链保护,必须要deposited到github上,再去访问,就能看到了。