博客搭建与自定义
原文链接 http://findneo.tech/170926HexoConfig/
注:以下为加速网络访问所做的原文缓存,经过重新格式化,可能存在格式方面的问题,或偶有遗漏信息,请以原文为准。
利用GitHub page和hexo搭建一个个人博客主要分三步:
- 使用hexo在本地搭建一个可访问的博客。
- 自定义博客样式。
- 将博客发布到GitHub page。
hexo本地搭建可访问博客
官方文档讲的很详细了。
#基于Windows 10 ; hexo: 3.3.9 ; next Release 5.0.0
#1.安装 Node.js (https://nodejs.org/en/download/)
#2.安装 Git for Windows (https://github.com/waylau/git-for-win)
#3.安装 hexo
# 打开cmd.exe
npm install -g hexo-cli
#4. 创建博客
# 进入想要放博客文件的目录
hexo init <folder>
cd <folder>
npm install
# 到此为止已经可以看到效果
# hexo clean;hexo g;hexo s [--debug]
#5. 自选主题,如next (http://theme-next.iissnan.com/getting-started.html)
cd themes
git clone https://github.com/iissnan/hexo-theme-next themes/next
# 到此为止目录结构如下
.
├── _config.yml [站点配置文件]
├── ...
├── source
| ├── _drafts
| └── _posts
└── themes
├──landscape
└──next
└──_config.yml [博客配置文件]
自定义博客样式
blog/_config.yml
blog/themes/next/_config.yml
版权声明 ,参考
blog\themes\next\layout_macro\post-copyright.swig
<ul class="post-copyright">
<li class="post-copyright-title">
<strong>{{ __('post.copyright.title') + __('symbol.colon') }}</strong>
<a href="{{ post.permalink }}" >{{ post.title }}</a>
</li>
<li class="post-copyright-author">
<strong>{{ __('post.copyright.author') + __('symbol.colon') }}</strong>
<a href="{{config.url}}" title="{{__('post.copyright.welcome')}}"> {{ config.author }}</a>
</li>
<li class="post-copyright-link">
<strong>{{ __('post.copyright.link') + __('symbol.colon') }}</strong>
<a href="{{ post.permalink }}" title="{{ post.title }}">{{ post.permalink }}</a>
</li>
<li class="post-copyright-license">
<strong>{{ __('post.copyright.license_title') + __('symbol.colon') }} </strong>
{{ __('post.copyright.license_content', theme.post_copyright.license_url, theme.post_copyright.license) }}
</li>
</ul>
blog\themes\next\languages\zh-Hans.yml
##部分
post:
copyright:
title: 本文标题
author: 文章作者
link: 原始链接
license_title: 版权声明
welcome: '访问 findneo 的个人博客'
license_content: 本文在<i class="fa fa-creative-commons"></i>
<a href="%s" rel="external nofollow" target="_blank">%s</a>下发布。转载请保留原始链接。
文章模板 blog\scaffolds\post.md
---
title: {{ title }}
date: {{ date }}
categories:
tags: [] ###可以直接用tags: [tag1,tag2]代替多行tags
description: ###当主题配置文件中的excerpt_description开启时,会把这一部分作为文章摘要
---
将博客发布到GitHub page
网站内容发布
创建GitHub账户,新建username.github.io项目,为git配置ssh
npm install hexo-deployer-git --save
hexo d
开发内容与配置文件备份
由于主题next本身是git项目,所以直接在blog文件夹内git init,然后整个blog文件夹(当然blog/.gitignore已经排除了没用的子文件夹)push到GitHub会发现next文件夹整个是空的。因此要做git库的嵌套处理,但比较麻烦,而且似乎不适用于这种情况。所以最后我采用在第一次push前把blog\themes\next\.git 重命名为 blog\themes\next\now-donot-use.git ,于是blog无法识别到next这个项目,成功地备份了所有配置。将来如果要更新主题,只需重命名回来,然后 git pull ,更新完改回去即可。
本地调试完成后,只需在git bash里执行./ok ["you commit comment"]
即可完成部署和配置备份,ok文件内容如下:
hexo clean
hexo d
git add -A
if [ "$1" = "" ]
then
git commit -m "Update."
else
git commit -m "$1"
fi
git push
emmm,重装系统了
从头开始,安装git fro windows,配置ssh
git config --global user.name your_name
git config --global user.email your_mail
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
clip < ~/.ssh/id_rsa.pub
ssh -T git@github.com 验证ssh可用
-------------------------------------
在GitHub新建findneo.github.io
git clone https://github.com/findneo/findneo.github.io.git
cd findneo.github.io
git checkout -b bakeup
新建备份分支并设为默认分支,因为后面只手动操作这个分支,master分支由hexo-deployer-git自动操作
hexo init tmp
cp -a tmp/* ./
rm -rf tmp
npm install --save hexo-deployer-git
npm install --save hexo-generator-baidu-sitemap
npm install --save hexo-generator-sitemap
npm install --save hexo-generator-searchdb
npm install --save hexo-generator-feed
npm i --save hexo-wordcount
-------------------------------------
在站点配置文件中配置git-deployer为master分支
git add .
git commit -m "..."
git push origin bakeup
hexo d -g
参考了这位朋友的备份方法,很棒,(๑•̀ㅂ•́)و✧。
列个软件清单:
WSL、everything、 Typora 、shadow socks、chrome、firefox、notepad++ 、一键上网脚本、 sublime、印象笔记、python2/3、git for windows、vmware/kali/win7、AgentRansack、7z、射手影音、SumatraPDF、~~微软办公系列~~ WPS Office 2013 个人版 、IObitUninstaller、snipaste
burpsuite、fiddler、wireshark、nmap、sqlmap、winhex、ziperello、weevely、winhex、御剑、awvs
添加gitment作为评论系统
项目介绍:https://imsun.net/posts/gitment-introduction/
在 findneo.github.io\themes\next\layout_partials\comments.swig 的倒数第二个endif前添加
{% elseif config.gitment.owner and config.gitment.commentrepo and config.gitment.clientid and config.gitment.clientsecret %}
<div id="gitmentContainer"></div>
<link rel="stylesheet" href="https://imsun.github.io/gitment/style/default.css">
<script src="https://imsun.github.io/gitment/dist/gitment.browser.js"></script>
<script type="text/javascript">
var gitment = new Gitment({
id: '{{page.title}}',
owner: '{{config.gitment.owner}}',
repo: '{{config.gitment.commentrepo}}',
oauth: {
client_id: '{{config.gitment.clientid}}',
client_secret: '{{config.gitment.clientsecret}}',
},
})
gitment.render('gitmentContainer')
</script>
然后在站点配置文件末尾添加
gitment:
owner: findneo
commentrepo: findneo.github.io
clientid: a3407310dfbeafbfe55a
clientsecret: ad6c900a0fce4a44b8eeb40e1790ee7c7cc7575d
需要注意的是每发布一篇文章都需要把该页面初始化一下其他人才可以评论,这是因为评论基于issue,并不是bug
单独控制每篇文章版权声明
给 themes\next\layout\_macro\post-copyright.swig
加上控制流程,通过每个post的 front-matter控制,遇到想不加版权声明的文章就在头部加上 notoriginal: true
即可,不影响已有文章。
{% if not post.notoriginal %}
foo
{% endif %}