Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 932 Bytes

README.md

File metadata and controls

44 lines (34 loc) · 932 Bytes

Hexo Blogroll

Comparing to traditional blogroll, this plugin fetches latest articles from blog feed and sorts blogs by the latest update date.

Live Preview

Get started

1. Install plugin

npm install hexo-blogroll --save

2. Create Blogroll Data

Create a blogroll.json file and put it into source/_data

{
    "blogs": [
        {
            "title": "Another blog",
            "feed": "https://another.blog/feed"
        },
        {
            "title": "Yet another blog",
            "feed": "https://yet.another.blog./feed"
        }
    ]
}

3. Create Blogroll Page

Create a hexo page and insert the blogroll tag as follows. 5 means for each blog, only the 5 latest posts are displayed.

---
title: Blogroll
---

Latest artciles of my favorite blogs updated by [hexo-blogroll](https://github.com/huiwang/hexo-blogroll)

{% blogroll 5 %}