标签:lan 中文 命令 文件 搭建个人博客 type ast 个人博客 toc
title: 使用 Hexo,Material Theme 以及 Github Pages 搭建个人博客
date: 2019-04-29 00:05:50
tags: 其他
---
hexo init Blog
cd Blog
npm install hexo-deployer-git --save
npm install hexo-material
cp node_modules/hexo-material themes/material
_config.yml
中的以下项:yml title: JustSong author: Song language: en theme: material deploy: type: git repository: https://github.com/songwonderful/songwonderful.github.io branch: master
themes/material
下的_config.template.yml
为_config.yml
并修改以下项:yml slogan: "尽人事,听天命" github: https://github.com/songwonderful zhihu: https://www.zhihu.com/people/songwonderful/
npm install hexo-material
仅仅是为了获取主题文件git config core.autocrlf true
消除LF will be replaced by CRLF
警告hexo new "article name"
hexo g -d
hexo s
hexo new page about
使用 Hexo,Material Theme 以及 Github Pages 搭建个人博客
标签:lan 中文 命令 文件 搭建个人博客 type ast 个人博客 toc
原文地址:https://www.cnblogs.com/justsong/p/10952870.html