Hexo Theme 排行榜

一開始只是想找個 hexo theme 來當作 Blog 的模板, 在網上看到有人針對 Github 星數的排行.

想說乾脆我也來用一個排行的文章, 剛好當作 blog 的一篇文章, 沒想到做著做著遇到好多沒碰過的東西, 原來給自己找了個苦差事呢.

Design

  • 有一個程式負責處理 github repositories data

    • Query github repositories with github api
    • Export related to blog
  • blog 的文章讀取上面程式來的資料

Implement

首先來實現資料來源的程式.

因為要抓取 github 的資料, 所以這裡使用公開且免費的 api, 只是有流量限制而已.

為了未來重複利用, 這邊直接把 github 相關的東西包成 module, 以便後續(未來)使用.

並且導入 axios 做為 request 的 library, 對於這個 github module 只是個雛形, 所以 function 沒有做全面, 只有針對要用的部分作一些設計.

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
37
38
39
40
41
42
43
import {AxiosResponse} from 'axios';

import _axios from '@axios';
import {RepositoriesResponse} from './definition';

// FIXME: currently for one topic
function compileToQ(topic: string[]): string {
return `topic:${encodeURIComponent(topic[0])}`;
}

// FIXME: input arguments interface type
function getRepositories({
q,
topic,
per_page,
sort,
}: {
q: string;
topic: string[];
per_page: number;
sort: 'stars';
}): Promise<RepositoriesResponse> {
return axios
.get<any, AxiosResponse<RepositoriesResponse>>('/search/repositories', {
params: {
q: compileToQ(topic),
per_page,
sort,
},
})
.then(res => res.data);
}

const axios = _axios.create({
baseURL: 'https://api.github.com/',
headers: {Accept: 'application/vnd.github.v3+json'},
});

const github = {
getRepositories,
};

export default github;

主要對外公開 getRepositories 方便使用


有了 github module 以後就可以開始寫主程式啦!

主程式很簡單, 就分為兩個部分:

  • 查詢 topic: hexo-theme
  • 將資料寫入檔案
    • 將 hexo project 的位置設定好(config file)
    • 將資料寫入到指定位置
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
const YAML = require('json-to-pretty-yaml');

import fs from 'fs';
import path from 'path';

import {Repository} from '@github/definition';

import config from './.config/hexo-theme-rank.json';
import github from './github';

async function getRepositories(): Promise<Repository[]> {
return (await github.getRepositories({
q: '',
topic: ['hexo-theme'],
per_page: 100,
sort: 'stars',
})).items.map(
repo => {
return { ... };
},
);
}

function output(data: any): void {}

async function main(): Promise<void> {
const repositories = await getRepositories();

output({ repositories, });
}
main();

這裡看到寫出的時候將 json 轉為 yaml, 是因為 hexo 所吃的格式為 yaml

到這邊已經完成一半了, 接下來開始在 blog 中將這份 yaml 資料讀入並且呈現出來.


到這邊就開始踩雷了!!!

  • post 怎麼讀取資料?

    • hexo 有一個叫做 _data 的方式將資料讀入, 並且套用於模板之中(ejs, swig …etc)

    • _data 最後試出有分 global 和 post 的, 但是這只是用於定義在資料夾成面而已, 到最後 compile 都是會被包在 global variable 中, 如果是定義在 post 就會用 post 名稱被分在 global object 中的一個 attribute key 中

      1
      2
      3
      4
      5
      6
      {
      // 這是 post 名稱
      "hexo-theme-rank": {
      "repositories": [...]
      }
      }
  • md 中怎麼寫 script 將這些資料 render 出來?

    • 找不到, 放棄…
    • 直接對 next 這個 theme 做客製化, 因為是採用 swig template 又搞了好久的 try error
    post.swig
    1
    2
    3
    4
    5
    6
    7
    8
    9
    {{ post.content }}

    {############################################}
    {# Customize: this is for Hexo Theme Rank #}
    {############################################}
    {% if post.slug === 'hexo-theme-rank' %}
    {{ hexo_theme_rank_list.render(page) }}
    {% endif %}
    {############################################}
    list.swig
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    {% macro render(post) %}
    {% set repos = site.data['hexo-theme-rank'].repositories %}
    <style>
    .{{ post.slug }}.line {
    border-bottom: 1px dashed #ccc;
    margin-bottom: 7px;
    }
    .{{ post.slug }}.date,
    .{{ post.slug }}.description {
    padding-left: 15px;
    }
    .{{ post.slug }}.date {
    font-size: 12px;
    color: #737373;
    }
    </style>
    {% for repo in repos.repositories %}
    <div class="{{ post.slug }} line">
    <a class="user" href="...
    </div>
    {% endfor %}
    {% endmacro %}

    這邊真的是雷爆了, 根本不會 swig, 硬是搞出來


用完上面這些, 也就是你看到我正在寫文章的時候了, 文章就採用原先 hexo 的方式用 md 來撰寫.

在搭配 post.swig + list.swig 客製的部分將 repositories 動態 render 出來.

有什麼正規的方式, 快點和我說阿… 難搞死了

Result

iissnan/hexo-theme-next ( Stars: 15.6k, Forks: 3.8k, Open issues: 83 )
Created at: 2014-12-01T14:07:07Z Updated at: 2021-06-25T19:03:31Z Pushed at: 2020-04-02T06:25:26Z
Elegant theme for Hexo.
litten/hexo-theme-yilia ( Stars: 8.1k, Forks: 2.5k, Open issues: 471 )
Created at: 2014-08-31T04:59:32Z Updated at: 2021-06-25T15:12:37Z Pushed at: 2021-06-05T06:40:55Z
一个简洁优雅的hexo主题 A simple and elegant theme for hexo.
theme-next/hexo-theme-next ( Stars: 6.8k, Forks: 1.9k, Open issues: 62 )
Created at: 2017-12-31T17:04:21Z Updated at: 2021-06-26T07:23:20Z Pushed at: 2021-05-01T17:21:33Z
Elegant and powerful theme for Hexo.
ppoffice/hexo-theme-icarus ( Stars: 4.7k, Forks: 1.3k, Open issues: 23 )
Created at: 2015-03-19T14:24:24Z Updated at: 2021-06-26T08:17:02Z Pushed at: 2021-06-25T16:34:47Z
A simple, delicate, and modern theme for the static site generator Hexo.
bollnh/hexo-theme-material ( Stars: 4.0k, Forks: 579, Open issues: 106 )
Created at: 2016-09-01T13:34:02Z Updated at: 2021-06-26T04:00:55Z Pushed at: 2021-06-23T03:58:25Z
Material Design theme for hexo.
blinkfox/hexo-theme-matery ( Stars: 3.5k, Forks: 940, Open issues: 133 )
Created at: 2018-08-27T16:38:12Z Updated at: 2021-06-26T08:00:11Z Pushed at: 2021-05-28T08:07:03Z
A beautiful hexo blog theme with material design and responsive design.一个基于材料设计和响应式设计而成的全面、美观的Hexo主题。国内访问:http://blinkfox.com
fluid-dev/hexo-theme-fluid ( Stars: 3.0k, Forks: 564, Open issues: 14 )
Created at: 2018-10-14T15:26:24Z Updated at: 2021-06-26T06:31:04Z Pushed at: 2021-06-12T05:31:10Z
:ocean: 一款 Material Design 风格的 Hexo 主题 / An elegant Material-Design theme for Hexo
jerryc127/hexo-theme-butterfly ( Stars: 2.5k, Forks: 574, Open issues: 9 )
Created at: 2019-06-04T13:38:41Z Updated at: 2021-06-26T08:22:45Z Pushed at: 2021-06-13T15:41:35Z
🦋 A Hexo Theme: Butterfly
LouisBarranqueiro/hexo-theme-tranquilpeak ( Stars: 1.7k, Forks: 486, Open issues: 3 )
Created at: 2015-04-22T17:22:28Z Updated at: 2021-06-25T13:00:27Z Pushed at: 2021-06-24T10:25:24Z
:lipstick: A gorgeous responsive theme for Hexo blog framework
Molunerfinn/hexo-theme-melody ( Stars: 1.3k, Forks: 200, Open issues: 9 )
Created at: 2017-09-03T13:15:12Z Updated at: 2021-06-25T12:31:40Z Pushed at: 2021-05-19T06:13:49Z
:musical_keyboard:A simple & beautiful & fast theme for Hexo.
ahonn/hexo-theme-even ( Stars: 1.3k, Forks: 216, Open issues: 22 )
Created at: 2016-02-24T07:45:32Z Updated at: 2021-06-24T08:49:00Z Pushed at: 2021-06-21T21:15:14Z
:rocket: A super concise theme for Hexo
fi3ework/hexo-theme-archer ( Stars: 1.2k, Forks: 242, Open issues: 60 )
Created at: 2017-08-10T14:13:00Z Updated at: 2021-06-25T18:51:23Z Pushed at: 2021-06-25T18:51:20Z
🎯 A smart and modern theme for Hexo.
ppoffice/hexo-theme-hueman ( Stars: 1.1k, Forks: 343, Open issues: 14 )
Created at: 2015-02-01T13:46:06Z Updated at: 2021-06-25T09:29:00Z Pushed at: 2021-03-11T15:06:32Z
A redesign of Alx's wordpress theme Hueman, ported to Hexo.
volantis-x/hexo-theme-volantis ( Stars: 1.1k, Forks: 366, Open issues: 22 )
Created at: 2017-10-24T03:46:42Z Updated at: 2021-06-26T00:02:42Z Pushed at: 2021-06-14T02:10:52Z
A Wonderful Theme for Hexo https://vlts.cc
forsigner/fexo ( Stars: 1.1k, Forks: 208, Open issues: 62 )
Created at: 2016-02-21T04:13:28Z Updated at: 2021-06-20T08:09:08Z Pushed at: 2021-05-10T03:17:36Z
A minimalist design theme for hexo.
Shen-Yu/hexo-theme-ayer ( Stars: 1.0k, Forks: 238, Open issues: 8 )
Created at: 2019-12-03T11:36:02Z Updated at: 2021-06-25T10:28:43Z Pushed at: 2021-06-21T09:11:45Z
a clean and elegant theme for Hexo. 🐋
next-theme/hexo-theme-next ( Stars: 963, Forks: 198, Open issues: 20 )
Created at: 2020-04-05T03:43:31Z Updated at: 2021-06-25T14:19:43Z Pushed at: 2021-06-19T19:43:31Z
🎉 Elegant and powerful theme for Hexo.
cofess/hexo-theme-pure ( Stars: 774, Forks: 234, Open issues: 91 )
Created at: 2017-06-10T05:06:19Z Updated at: 2021-06-25T13:55:16Z Pushed at: 2021-05-31T02:54:50Z
Hexo theme pure. It's a pure theme for Hexo.
Haojen/hexo-theme-Anisina ( Stars: 747, Forks: 162, Open issues: 13 )
Created at: 2016-05-27T09:57:08Z Updated at: 2021-06-25T11:37:53Z Pushed at: 2021-03-17T12:22:57Z
:art: A simple responsive , support qiniu image cdn theme for hexo https://haojen.github.io/
ppoffice/hexo-theme-minos ( Stars: 660, Forks: 199, Open issues: 13 )
Created at: 2015-05-17T07:46:09Z Updated at: 2021-06-24T13:20:03Z Pushed at: 2020-08-17T12:40:43Z
A simple and retro styled Hexo theme, concentrated more on your ideas.
XPoet/hexo-theme-keep ( Stars: 597, Forks: 90, Open issues: 14 )
Created at: 2020-03-12T07:34:20Z Updated at: 2021-06-24T09:46:41Z Pushed at: 2021-06-21T07:08:16Z
:rainbow: A simple and elegant theme for Hexo. It makes you more focused on writing.
Siricee/hexo-theme-Chic ( Stars: 582, Forks: 123, Open issues: 10 )
Created at: 2019-06-12T06:13:00Z Updated at: 2021-06-25T08:03:32Z Pushed at: 2021-05-25T02:51:09Z
An elegant, powerful, easy-to-read Hexo theme.
Ben02/hexo-theme-Anatole ( Stars: 564, Forks: 122, Open issues: 35 )
Created at: 2017-01-13T09:18:04Z Updated at: 2021-06-24T15:56:43Z Pushed at: 2020-07-26T19:14:31Z
A white and simple Hexo theme, originated from a Farbox theme
zthxxx/hexo-theme-Wikitten ( Stars: 562, Forks: 118, Open issues: 15 )
Created at: 2017-01-21T16:41:25Z Updated at: 2021-06-22T02:57:34Z Pushed at: 2020-12-28T03:49:49Z
A theme of Hexo for personal wiki which seems like Wikitten style.
yanm1ng/hexo-theme-vexo ( Stars: 553, Forks: 124, Open issues: 33 )
Created at: 2017-06-10T10:55:33Z Updated at: 2021-06-15T05:55:40Z Pushed at: 2021-05-07T02:31:50Z
🍟 Vexo is a Hexo theme inspired by Vue's official website.
TriDiamond/hexo-theme-obsidian ( Stars: 517, Forks: 89, Open issues: 53 )
Created at: 2019-09-26T02:38:50Z Updated at: 2021-06-26T02:20:23Z Pushed at: 2021-06-15T22:07:50Z
🎨 A dark Hexo theme, it's responsive, simple but elegant.
ikeq/hexo-theme-inside ( Stars: 511, Forks: 82, Open issues: 19 )
Created at: 2017-11-09T03:34:33Z Updated at: 2021-06-25T09:15:37Z Pushed at: 2021-06-19T03:43:02Z
🌈 SPA, Flat and clean theme for Hexo https://blog.oniuo.com/theme-inside
SukkaW/hexo-theme-suka ( Stars: 510, Forks: 45, Open issues: 34 )
Created at: 2018-07-05T04:06:37Z Updated at: 2021-06-25T13:13:27Z Pushed at: 2021-05-10T21:13:54Z
🎨Modern, powerful and simple theme for Hexo.
xiangming/landscape-plus ( Stars: 504, Forks: 111, Open issues: 31 )
Created at: 2014-06-03T02:36:48Z Updated at: 2021-05-11T02:19:08Z Pushed at: 2020-02-19T17:46:29Z
针对中国大陆地区对hexo官方主题landscape进行优化。
JoeyBling/hexo-theme-yilia-plus ( Stars: 493, Forks: 141, Open issues: 36 )
Created at: 2019-07-19T09:17:50Z Updated at: 2021-06-23T15:34:16Z Pushed at: 2021-05-10T23:40:13Z
一个简洁优雅的hexo主题 A simple and elegant theme for hexo.
sabrinaluo/hexo-theme-replica ( Stars: 488, Forks: 63, Open issues: 3 )
Created at: 2015-12-16T15:55:11Z Updated at: 2021-06-15T11:16:22Z Pushed at: 2020-10-28T13:19:19Z
:octocat:Github style replication for hexo theme
Mrminfive/hexo-theme-skapp ( Stars: 485, Forks: 126, Open issues: 33 )
Created at: 2017-08-18T13:12:14Z Updated at: 2021-06-20T08:49:31Z Pushed at: 2019-06-12T14:38:54Z
The hexo flat design theme(扁平化简约主题)
hexojs/awesome-hexo ( Stars: 479, Forks: 45, Open issues: 2 )
Created at: 2017-04-27T15:46:29Z Updated at: 2021-06-22T03:10:43Z Pushed at: 2020-02-29T06:33:29Z
A curated list of awesome things related to Hexo
yelog/hexo-theme-3-hexo ( Stars: 449, Forks: 163, Open issues: 12 )
Created at: 2017-02-05T09:26:14Z Updated at: 2021-06-25T05:33:06Z Pushed at: 2021-02-22T07:40:00Z
hexo主题:三段式设计、极简、方便 Hexo theme: three-stage design
Haojen/hexo-theme-Claudia ( Stars: 436, Forks: 79, Open issues: 4 )
Created at: 2017-05-27T14:06:19Z Updated at: 2021-06-25T13:12:25Z Pushed at: 2021-05-20T12:00:45Z
📌 Concisely designed & easy to config, match device dark mode, 90+ Lighthouse scoring
aircloud/hexo-theme-aircloud ( Stars: 398, Forks: 96, Open issues: 23 )
Created at: 2018-04-11T03:54:22Z Updated at: 2021-06-25T13:50:40Z Pushed at: 2021-03-12T16:55:21Z
A concise hexo theme
godweiyang/hexo-matery-modified ( Stars: 383, Forks: 314, Open issues: 9 )
Created at: 2019-08-11T08:14:52Z Updated at: 2021-06-19T19:36:42Z Pushed at: 2021-06-11T03:56:45Z
My personal modified hexo matery theme with some bugs fixed.
SumiMakito/hexo-theme-typography ( Stars: 381, Forks: 78, Open issues: 18 )
Created at: 2017-09-20T13:10:29Z Updated at: 2021-06-17T06:22:04Z Pushed at: 2021-06-15T20:32:14Z
Rediscover the beauty of typography.
dongyuanxin/theme-bmw ( Stars: 373, Forks: 51, Open issues: 8 )
Created at: 2018-11-14T12:20:53Z Updated at: 2021-05-19T07:44:54Z Pushed at: 2020-02-19T07:45:55Z
✋ Smart Voice: Voice for yourself | 微声: 请为自己发声
liuyib/hexo-theme-stun ( Stars: 372, Forks: 83, Open issues: 28 )
Created at: 2019-05-11T15:12:05Z Updated at: 2021-06-26T06:29:00Z Pushed at: 2021-06-19T22:05:31Z
🦄 An elegant theme for Hexo
iTimeTraveler/hexo-theme-hiker ( Stars: 350, Forks: 83, Open issues: 54 )
Created at: 2016-09-13T10:42:47Z Updated at: 2021-06-26T02:58:41Z Pushed at: 2020-02-21T04:59:55Z
An attractive theme for Hexo. called "Hiker", short for "HikerNews".
EasyHexo/Easy-Hexo ( Stars: 333, Forks: 66, Open issues: 8 )
Created at: 2018-10-19T10:29:55Z Updated at: 2021-06-17T17:35:37Z Pushed at: 2021-06-16T03:40:43Z
🤘 Build your own website with Hexo, the easy way. | 轻松使用 Hexo 建站。
ZEROKISEKI/hexo-theme-gal ( Stars: 319, Forks: 85, Open issues: 22 )
Created at: 2017-10-29T12:05:32Z Updated at: 2021-06-21T01:49:12Z Pushed at: 2021-05-27T19:56:27Z
忧郁的弟弟网站主题移植
frostfan/hexo-theme-polarbear ( Stars: 304, Forks: 68, Open issues: 3 )
Created at: 2017-02-23T05:21:29Z Updated at: 2021-06-25T08:06:46Z Pushed at: 2021-01-06T10:38:47Z
A super light and simple theme.
sharvaridesai/hexo-theme-edinburgh ( Stars: 293, Forks: 68, Open issues: 15 )
Created at: 2017-02-04T15:40:03Z Updated at: 2021-06-24T03:15:28Z Pushed at: 2020-11-24T06:47:28Z
Beautiful minimal portfolio theme for Hexo.
mythsman/hexo-douban ( Stars: 284, Forks: 40, Open issues: 28 )
Created at: 2017-06-16T01:26:21Z Updated at: 2021-06-21T07:41:54Z Pushed at: 2021-03-12T23:52:24Z
:cd: A simple plugin for hexo that helps us generate pages for douban books ,movies and games.
Tomotoes/hexo-theme-tomotoes ( Stars: 276, Forks: 40, Open issues: 1 )
Created at: 2017-11-20T01:40:00Z Updated at: 2021-06-16T00:37:07Z Pushed at: 2020-09-11T02:04:17Z
:tomato: A fresh and refined Hexo theme
sanjinhub/hexo-theme-geek ( Stars: 262, Forks: 49, Open issues: 7 )
Created at: 2020-01-08T03:57:58Z Updated at: 2021-06-25T02:52:58Z Pushed at: 2021-06-05T03:43:35Z
一个符合极客精神主义极简的 Hexo 主题
dongyuanxin/theme-ad ( Stars: 260, Forks: 50, Open issues: 11 )
Created at: 2019-02-23T16:35:20Z Updated at: 2021-05-23T19:10:46Z Pushed at: 2020-03-31T14:33:37Z
🔨 Art design theme for write and show.
geekplux/hexo-theme-typing ( Stars: 259, Forks: 54, Open issues: 1 )
Created at: 2016-07-30T15:39:22Z Updated at: 2021-06-15T13:46:21Z Pushed at: 2020-08-10T02:00:49Z
a pure and fresh Hexo theme. 🎹
GallenHu/hexo-theme-Daily ( Stars: 245, Forks: 43, Open issues: 0 )
Created at: 2016-07-26T06:13:14Z Updated at: 2021-03-29T06:31:16Z Pushed at: 2021-03-21T10:55:41Z
A simple theme for Hexo
zalando-incubator/hexo-theme-doc ( Stars: 224, Forks: 52, Open issues: 20 )
Created at: 2017-10-19T11:42:44Z Updated at: 2021-06-24T04:52:11Z Pushed at: 2020-04-15T12:29:40Z
A documentation theme for the Hexo blog framework
giscafer/hexo-theme-cafe ( Stars: 217, Forks: 58, Open issues: 7 )
Created at: 2016-11-29T07:54:07Z Updated at: 2021-06-18T15:34:38Z Pushed at: 2019-03-29T22:22:04Z
精简的Hexo博客主题,样式风格如阮一峰老师博客
colmugx/hexo-theme-Nlvi ( Stars: 213, Forks: 22, Open issues: 7 )
Created at: 2017-04-20T08:26:33Z Updated at: 2021-06-09T01:34:02Z Pushed at: 2020-07-18T16:33:59Z
🎨A simple theme for hexo.
iTimeTraveler/hexo-theme-hiero ( Stars: 211, Forks: 136, Open issues: 25 )
Created at: 2016-11-04T07:05:36Z Updated at: 2021-05-09T15:17:08Z Pushed at: 2018-12-09T06:49:05Z
An awesome magazine, blog theme for your Hexo site.
iTimeTraveler/hexo-theme-hipaper ( Stars: 210, Forks: 67, Open issues: 39 )
Created at: 2016-11-22T03:57:12Z Updated at: 2021-06-24T03:15:28Z Pushed at: 2020-11-04T09:28:14Z
A fashional newspaper theme for Hexo.
ochukai/hexo-theme-ochuunn ( Stars: 203, Forks: 42, Open issues: 5 )
Created at: 2017-03-31T09:24:03Z Updated at: 2021-05-14T14:42:59Z Pushed at: 2019-09-02T01:36:14Z
A simple green super hexo theme.
gaoryrt/hexo-theme-pln ( Stars: 192, Forks: 39, Open issues: 0 )
Created at: 2016-04-12T07:37:55Z Updated at: 2021-06-11T18:14:30Z Pushed at: 2020-10-12T03:41:53Z
📝 Plain theme for Hexo.
Yue-plus/hexo-theme-arknights ( Stars: 192, Forks: 19, Open issues: 6 )
Created at: 2020-03-21T06:53:57Z Updated at: 2021-06-25T11:32:08Z Pushed at: 2021-06-18T00:51:59Z
明日方舟罗德岛阵营的 Hexo 主题,支持数学公式、Valine评论系统、Mermaid图表
boizz/hexo-theme-laughing ( Stars: 185, Forks: 27, Open issues: 13 )
Created at: 2016-11-12T10:08:57Z Updated at: 2021-01-03T12:03:58Z Pushed at: 2017-09-18T02:03:25Z
A lightweight hexo theme
stiekel/hexo-theme-random ( Stars: 179, Forks: 56, Open issues: 4 )
Created at: 2016-04-17T08:36:35Z Updated at: 2021-06-16T01:37:56Z Pushed at: 2020-07-24T22:12:13Z
A hexo theme with random fullscreen background image.
removeif/hexo-theme-amazing ( Stars: 178, Forks: 66, Open issues: 7 )
Created at: 2020-03-05T06:47:44Z Updated at: 2021-06-25T03:41:51Z Pushed at: 2021-05-21T05:48:55Z
Demo: https://removeif.github.io/removeif-demo hexo-theme
esappear/hexo-theme-clover ( Stars: 177, Forks: 38, Open issues: 7 )
Created at: 2018-10-05T13:57:23Z Updated at: 2021-05-15T16:38:25Z Pushed at: 2019-09-15T13:53:03Z
Clover theme for Hexo.
ShanaMaid/hexo-theme-shana ( Stars: 167, Forks: 39, Open issues: 3 )
Created at: 2017-04-12T02:41:46Z Updated at: 2021-05-31T09:32:20Z Pushed at: 2021-05-17T02:57:44Z
what's a cool hexo theme!
Halyul/hexo-theme-mdui ( Stars: 166, Forks: 30, Open issues: 0 )
Created at: 2017-01-29T16:18:22Z Updated at: 2021-05-31T13:23:06Z Pushed at: 2020-08-20T02:32:24Z
random-yang/paper ( Stars: 165, Forks: 18, Open issues: 6 )
Created at: 2019-11-14T02:39:50Z Updated at: 2021-06-25T12:23:06Z Pushed at: 2021-01-17T06:46:16Z
🌈 一个类纸风的主题paper🎉(still updating...)
lazysheep666/terminal_theme ( Stars: 161, Forks: 11, Open issues: 3 )
Created at: 2017-12-10T10:28:37Z Updated at: 2021-06-18T14:57:00Z Pushed at: 2021-04-18T13:12:59Z
A simple theme based on hexo 👻👻👻
justpsvm/hexo-theme-varaint ( Stars: 160, Forks: 32, Open issues: 9 )
Created at: 2016-10-18T09:57:42Z Updated at: 2021-05-15T13:15:41Z Pushed at: 2020-05-12T04:49:46Z
varaint for Hexo
miiiku/flex-block ( Stars: 157, Forks: 23, Open issues: 3 )
Created at: 2019-03-04T09:47:53Z Updated at: 2021-06-25T22:40:43Z Pushed at: 2021-04-26T11:17:09Z
一个基于Hexo的主题
lewis-geek/hexo-theme-Aath ( Stars: 154, Forks: 25, Open issues: 5 )
Created at: 2017-09-04T02:41:19Z Updated at: 2021-01-06T10:31:04Z Pushed at: 2020-05-31T04:24:00Z
Hexo 主题
auroral-ui/hexo-theme-aurora ( Stars: 153, Forks: 31, Open issues: 23 )
Created at: 2021-03-12T09:08:24Z Updated at: 2021-06-26T07:16:57Z Pushed at: 2021-06-24T18:38:03Z
🏳️‍🌈 Futuristic auroral Hexo theme.
codefine/hexo-theme-mellow ( Stars: 153, Forks: 33, Open issues: 18 )
Created at: 2017-10-25T06:27:51Z Updated at: 2021-06-12T01:22:36Z Pushed at: 2019-10-21T10:17:22Z
based on material design
lh1me/hexo-theme-aomori ( Stars: 151, Forks: 25, Open issues: 0 )
Created at: 2020-03-11T09:03:20Z Updated at: 2021-06-22T07:58:19Z Pushed at: 2021-06-07T07:57:07Z
A Hexo Theme. Hexo 博客主题
blleng/hexo-theme-lx ( Stars: 150, Forks: 16, Open issues: 3 )
Created at: 2019-11-02T09:48:38Z Updated at: 2021-05-18T01:45:49Z Pushed at: 2020-11-29T05:39:57Z
👉 A simple & clear & elegant Hexo theme. 🔭🔭Lx——一款简洁、美观的Hexo博客主题。
HeskeyBaozi/hexo-theme-lite ( Stars: 149, Forks: 28, Open issues: 12 )
Created at: 2017-12-07T07:08:26Z Updated at: 2021-06-20T02:35:24Z Pushed at: 2018-05-05T09:43:25Z
Keep Calm, Light and Writing. Light Hexo Theme.
levblanc/hexo-theme-aero-dual ( Stars: 148, Forks: 49, Open issues: 10 )
Created at: 2016-08-28T09:36:55Z Updated at: 2021-06-20T00:48:33Z Pushed at: 2019-05-28T07:51:31Z
fan-lv/Fan ( Stars: 138, Forks: 28, Open issues: 5 )
Created at: 2019-02-11T02:26:54Z Updated at: 2021-06-12T09:14:03Z Pushed at: 2021-02-02T06:43:36Z
hexo-theme
HyunSeob/hexo-theme-overdose ( Stars: 136, Forks: 36, Open issues: 11 )
Created at: 2016-08-22T15:19:23Z Updated at: 2021-05-17T03:15:19Z Pushed at: 2018-04-30T01:29:56Z
⚠ Caution: you could be overdosed with this theme.
moumao/hexo-theme-Vateral ( Stars: 132, Forks: 36, Open issues: 20 )
Created at: 2017-03-23T08:52:47Z Updated at: 2021-03-01T07:09:39Z Pushed at: 2020-05-24T13:44:00Z
😘hexo单页面主题:Vateral(a theme for hexo)
mickeyouyou/yinwang ( Stars: 132, Forks: 25, Open issues: 5 )
Created at: 2015-01-02T10:36:23Z Updated at: 2021-05-23T12:57:13Z Pushed at: 2021-02-18T07:03:07Z
Blog Theme For Hexo
HCLonely/hexo-theme-webstack ( Stars: 120, Forks: 40, Open issues: 1 )
Created at: 2020-06-04T10:55:14Z Updated at: 2021-06-23T03:23:56Z Pushed at: 2021-06-08T10:16:04Z
A hexo theme based on webstack. | 一个基于webstack的hexo主题。
tcrowe/generator-hexo-theme ( Stars: 119, Forks: 13, Open issues: 0 )
Created at: 2014-05-13T07:05:44Z Updated at: 2021-02-10T07:34:38Z Pushed at: 2019-12-20T21:48:34Z
Generate a hexo theme: ejs, pug, swig, nunjucks | Moved to https://tcrowe.commons.host/contact
Longlongyu/hexo-theme-Cxo ( Stars: 119, Forks: 33, Open issues: 19 )
Created at: 2018-07-07T10:44:38Z Updated at: 2021-06-17T10:43:03Z Pushed at: 2019-12-24T10:12:29Z
A cool ,simple & beautiful theme for Hexo. :mushroom:
zchengsite/hexo-theme-oranges ( Stars: 118, Forks: 20, Open issues: 9 )
Created at: 2019-08-18T12:02:44Z Updated at: 2021-06-20T01:01:18Z Pushed at: 2021-06-19T07:31:56Z
🍊A simple hexo theme of minimalism
justpsvm/hexo-theme-primer ( Stars: 116, Forks: 25, Open issues: 0 )
Created at: 2016-02-23T16:00:13Z Updated at: 2021-05-29T13:51:18Z Pushed at: 2019-02-09T15:26:35Z
The github style (primer) for Hexo theme.
GeekaholicLin/hexo-theme-ylion ( Stars: 112, Forks: 32, Open issues: 17 )
Created at: 2017-02-13T14:47:27Z Updated at: 2021-04-13T09:22:22Z Pushed at: 2019-09-26T03:51:05Z
:blush: 说不定是一个让你感到惊喜的hexo主题 :beers: :candy:
neoFelhz/hexo-theme-spectre ( Stars: 105, Forks: 12, Open issues: 4 )
Created at: 2018-01-24T04:26:44Z Updated at: 2021-06-07T03:42:22Z Pushed at: 2018-10-30T14:20:06Z
A modern, simple & elegant theme for Hexo
sqlsec/Django-Hexo-Matery ( Stars: 103, Forks: 33, Open issues: 0 )
Created at: 2020-03-06T03:53:01Z Updated at: 2021-06-22T01:03:08Z Pushed at: 2020-12-11T09:20:53Z
尝试用Django3重写的我的Hexo博客,使用的前端主题是 Matery。
SukkaW/hexo-theme-doku ( Stars: 103, Forks: 6, Open issues: 8 )
Created at: 2019-11-11T05:56:46Z Updated at: 2021-05-21T04:56:28Z Pushed at: 2019-11-16T15:46:09Z
:scroll: Doku, a Hexo theme designed for writing documents.
nameoverflow/hexo-theme-icalm ( Stars: 102, Forks: 27, Open issues: 3 )
Created at: 2017-03-29T03:59:10Z Updated at: 2021-06-14T11:18:29Z Pushed at: 2020-03-09T13:37:24Z
Monochrome theme for hexo
hejianxian/hexo-theme-jane ( Stars: 94, Forks: 19, Open issues: 10 )
Created at: 2016-02-04T04:05:13Z Updated at: 2021-04-10T15:11:47Z Pushed at: 2018-04-28T09:11:11Z
🎨 Simple enough, a hexo theme.
Xunzhuo/Coder ( Stars: 93, Forks: 14, Open issues: 0 )
Created at: 2020-05-25T14:42:43Z Updated at: 2021-06-23T14:46:43Z Pushed at: 2020-11-12T05:28:38Z
A fast、pure、practical、elegant Hexo theme for Developers🔥🔥🔥
FuShaoLei/hexo-theme-white ( Stars: 92, Forks: 34, Open issues: 0 )
Created at: 2020-06-16T16:57:05Z Updated at: 2021-06-02T01:20:05Z Pushed at: 2021-03-31T12:13:51Z
(不再维护🏃‍)⚙一款在极简和个性之间徘徊的Hexo主题
solstice23/hexo-theme-argon ( Stars: 90, Forks: 6, Open issues: 2 )
Created at: 2020-08-22T07:25:00Z Updated at: 2021-06-24T01:19:48Z Pushed at: 2021-02-25T08:00:42Z
Argon-Theme 的 Hexo 移植版
th720309/hexo-theme-believe ( Stars: 86, Forks: 11, Open issues: 6 )
Created at: 2017-01-31T07:12:06Z Updated at: 2021-02-26T10:17:06Z Pushed at: 2017-04-07T07:02:33Z
A simple theme for hexo Sample:
TongchengQiu/hexo-theme-another ( Stars: 82, Forks: 14, Open issues: 6 )
Created at: 2016-05-10T06:23:02Z Updated at: 2021-05-19T07:42:34Z Pushed at: 2016-10-12T02:31:23Z
:seedling::seedling::seedling:a pithy theme of hexo.
theme-kaze/hexo-theme-kaze ( Stars: 82, Forks: 11, Open issues: 2 )
Created at: 2020-07-10T14:45:20Z Updated at: 2021-06-20T04:48:15Z Pushed at: 2021-06-08T11:06:15Z
A simple, responsive Hexo theme
tiaanduplessis/hexo-theme-brewski ( Stars: 74, Forks: 20, Open issues: 5 )
Created at: 2017-06-14T11:18:03Z Updated at: 2021-06-21T09:07:27Z Pushed at: 2020-12-16T15:43:05Z
A minimal Hexo theme
pengloo53/Hexo-theme-light_cn ( Stars: 70, Forks: 78, Open issues: 5 )
Created at: 2015-04-29T16:42:29Z Updated at: 2021-04-19T10:54:23Z Pushed at: 2018-06-10T14:14:43Z
The Hexo theme base on hexo-theme-light, Write a little book about hexo.
adisaktijrs/hexo-theme-minima ( Stars: 70, Forks: 17, Open issues: 3 )
Created at: 2020-10-10T06:00:05Z Updated at: 2021-06-25T22:09:11Z Pushed at: 2021-03-21T04:55:21Z
An undoubtedly simple and lightweight dark/light theme for Hexo.js