> For the complete documentation index, see [llms.txt](https://lh1me.gitbook.io/aomori/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lh1me.gitbook.io/aomori/features/article.md).

# Article

{% hint style="info" %}
Configuration in the **article's`Front-matter`**
{% endhint %}

### **Cover Image**

Support `Relative Path` and `Full Path`, refer to resource folder [Resource Folder](https://hexo.io/zh-cn/docs/asset-folders)

```
cover: xxx.jpg
```

### **Cover Video**

Use `Full Path`, recommend CDN

Each article can only have one cover video, and only one of the cover image and the cover video can exist at the same time.

```
video:
  src: src # Full Video Link
  poster: poster # Full Poster Link
```

### **Article Header Image**

Support `Relative Path` and `Full Path`, refer to resource folder [Resource Folder](https://hexo.io/zh-cn/docs/asset-folders)

```
photos:
- xxx.jpg
- xxx.jpg
```

### **Reprint Link**

```
link_reprint:
  -
    url: url
    title: title
  -
    url: url
    title: title
```

This configuration will show the badge on the homepage.

### **Reference Link**

```
link_refer:
  -
    url: url
    title: title
  -
    url: url
    title: title
```

### **Top**

Install dependencies in the Hexo directory

```
npm i hexo-generator-index -S
```

Add options in the article Front-matter

```
sticky: 100
```

More ways to use [hexo-generator-index](https://github.com/hexojs/hexo-generator-index)

This configuration will show the badge on the homepage.

### **Video**

We have optimized the video in the content of the article, you only need to directly use the `HTML Video Tag` like `<video src="xxx"/>` when writing the article.
