你问人问题,她若答非所问,便已是答了,无需再问。——木心

文档:https://hexo.io/zh-cn/docs/themes

先创建hexo项目

1
hexo init simple-hexo

然后到themes新建一个主题文件夹

1
2
cd .\simple-hexo\themes\
mkdir simple-theme

修改外部_config.ymltheme

1
theme: simple-theme

image-20221227214101921

外部执行一下hexo s启动项目试试

image-20221227214149257

打开localhost:4000

image-20221227214209708

因为我们什么都没写,所以是白屏

新建一个layout目录,下面放一个index.pug

image-20221227214537115

1
.container Hello World

发现我们的pug代码并未渲染

image-20221227214609042

这是因为我们没有安装pug插件导致的

到主目录执行

1
cnpm i hexo-renderer-pug

image-20221227214724883

pug元素成功渲染

image-20221227214744285

好了,接下来你可以编写你自己的主题啦!