hexo博客目录说明
deploy_git: 这个目录是执行 hexo d 命令 后生成的,主要存放部署的信息.
node_modules: 这个目录存放的是一些插件包
public : 这个目录是执行 hexo g后生成的, hexo会将”/blog/source/“ 下面的.md后缀的文件编译为.html后缀的文件,存放在”/blog/public/ “ 路径下
scaffolds: 用来存放模板文件。模板文件的正文部分一般为空,一般在模板文件顶部有一个区域 ( 以 — 分隔的区域) 称作Front-matter,在这里配置的变量主要有title(即文章标题), date(即文章创建日期),comment(是否开启评论), tags(文章标签), categories(文章所属分类)等. 当你新建文章时,Hexo 会根据 scaffold 来建立文件,也就是说会在你创建的每个文件顶部自动加上模板文件中配置的这些内容.
source: 存放你的文章(.md后缀的文件)
static: 这个目录是我自己创建的,专门用来存放图片的
themes: 这 ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post$ hexo new "My New Post"
More info: Writing
Run server$ hexo server
More info: Server
Generate static files$ hexo generate
More info: Generating
Deploy to remote sites$ hexo deploy
More info: Deployment