Amzaing00 2019-12-14
本次实践主要参考5分钟 搭建免费个人博客–dimsky
主要由以下步骤构成
repository
? 安装npm
? 利用npm安装hexo,在CMD或者GitBash中都可以
1 | npm install hexo-cli -g |
1 | npm install hexo-deployer-git --save |
使用 `cd` 到相应的路径,并执行以下命令
1 | hexo init daydreamnist.github.io |
1 大专栏 hexo+github2 | cd username.github.iogit clone https://github.com/iissnan/hexo-theme-next themes/next |
修改...daydreamnist.github.io\_config.yml键值
__#site
title: daydreamnist’s blog
subtitle: daydreamnist
description:
keywords:
author: YangYang
language: zh-Hans
timezone: Asia/Shanghai
_#Extensions
theme: next
_#Deployment
deploy:
type: git
repo: https://github.com/daydreamnist/daydreamnist.github.io.git
branch: master
默认的博客首页,文章是全部显示,并且没有分类、标签
需要通过配置…daydreamnist.github.iothemesnext_config.yml键值
menu:
home: / || home
tags: /tags/ || tags
categories: /categories/ || th
archives: /archives/ || archiveauto_excerpt:
enable: true
length: 150
并且使用如下命令创建
1 | hexo new page categories |
123 | hexo s #本地测试hexo g #生成hexo d #部署 |
12 |