先缅怀一下CSDN,从15年开始使用CSDN写技术博客到现在,一年半啦,时间真的过的很快……缅怀结束。
第一篇记录一下使用Jekyll搭建这个博客的过程。
安装Jekyll
安装,默认主题是minima
12345~ $ gem install jekyll bundler~ $ jekyll new my-awesome-site~ $ cd my-awesome-site~/my-awesome-site $ bundle exec jekyll serve=> Now browse to http://localhost:4000由于需要做定制(比如需要去除RSS功能,调整页面效果),通过一下命令获取到指定theme的代码,将代码复制到站点目录下
|
|
jekyll目录结构
http://jekyllrb.com/docs/structure/
|
|
自定义Jekyll主题
Gemfile
添加要安装的主题,有点像Podfile文件添加需要pod的项目:
|
|
_config.yml
设置主题:
|
|
终端执行:
|
|
添加评论系统
创建评论账号
- https://disqus.com 注册账号,
- register your site 输入网站,类型,语言创建该站点的评论账号
- install Disqus on your site using the shortname registered.
- 从该网站的配置中获取到shortname为
https-jolieyang-github-io
Jekyll配置
设置page.comments为True,在post.html中头处添加:
1234---layout: defaultcomments: true---设置site.disqus.shortname,在_config.yml添加:
12disqus:shortname: shortname