使用hexo生成静态博客并架设在免费的github page平台
系统:
* Window 7 64位
使用软件:
* Git v1.9.5
[下载地址] 百度云 360云盘 访问密码 d269 Git官网
* Node.js v0.12.5 x64
[下载地址] 百度云 360云盘 访问密码 608f node.js官网
32位或64位按自己电脑的系统来选择,如果不清楚,可以直接在官网下载32位的,可以兼容64位系统
备注:
不同软件版本的安装与使用会有差异,请尽量与本教程保持一致
git --version
node -v
npm -v
hexo是基于node.js的静态博客,官网也是搭建在GitHub上
* 在电脑上新建一个blog文件夹,该文件夹用于存放你的博客文件,然后右键单击选择“Git Bash”
* 大家估计都有被“墙”的经历,安装hexo为了避免出现类似情况,我使用淘宝NPM镜像,输入以下命令等待安装完成
$ npm install -g cnpm --registry=https://registry.npm.taobao.org
* 使用淘宝NPM安装Hexo
$ cnpm install -g hexo-cli
与原先的npm完全一样,只是命令改为cnpm,一样等待hexo安装完成
出现的WARN可以不用理会
继续输入以下命令
$ cnpm install hexo --save
安装完成后,在输入命令,验证是否安装正确
$ hexo -v
$ hexo init
* 安装生成器
$ cnpm install
* 运行hexo,以后要在本地运行博客只要输入该命令即可
$ hexo s -g
打开浏览器,输入localhost:4000,就可以在本地看到你的个人博客了
* 停止运行
按住Ctrl+C键即可停止
#博客名称
title: 我的博客
#副标题
subtitle: 一天进步一点
#简介
description: 记录生活点滴
#博客作者
author: John Doe
#博客语言
language: zh-CN
#时区
timezone:
#博客地址,与申请的GitHub一致
url: http://elfwalk.github.io
root: /
#博客链接格式
permalink: :year/:month/:day/:title/
permalink_defaults:
source_dir: source
public_dir: public
tag_dir: tags
archive_dir: archives
category_dir: categories
code_dir: downloads/code
i18n_dir: :lang
skip_render:
new_post_name: :title.md # File name of new posts
default_layout: post
titlecase: false # Transform title into titlecase
external_link: true # Open external links in new tab
filename_case: 0
render_drafts: false
post_asset_folder: false
relative_link: false
future: true
highlight:
enable: true
line_number: true
auto_detect: true
tab_replace:
default_category: uncategorized
category_map:
tag_map:
#日期格式
date_format: YYYY-MM-DD
time_format: HH:mm:ss
#分页,每页文章数量
per_page: 10
pagination_dir: page
#博客主题
theme: landscape
#发布设置
deploy:
type: git
#elfwalk改为你的github用户名
repository: https://github.com/elfwalk/elfwalk.github.io.git
branch: master
$ hexo new "hello"
用编辑器打开hello.md文件,编写完后保存
title: hello
date: 2015-07-01 22:37:23
categories:
- 日志
- 二级目录
tags:
- hello
---
摘要:
正文:
$ git config --global user.name "你的用户名"
$ git config --global user.email "你的邮箱"
* 安装hexo git插件
$ cnpm install hexo-deployer-git --save
* 发布更新博客
$ hexo d -g
发布时需要输入github的帐号和密码,输入密码时是看不到自己输入的内容的
发布成功后,访问yourname.github.io看下成果
原文地址:http://hifor.net/2015/07/01/零基础免费搭建个人博客-hexo-github