Having a personal website gives you a platform to connect with the world.
Another benefit of having a personal website is to luxury of connecting to the world.
Your website can be accessed from any part of the world.
1. Install Hexo
1 | $ sudo npm install -g hexo-cli |
2. Create a project for your GitHub Pages
1 | $ hexo init yt8yt.github.io |
3. Run a test server for your page on Mac
1 | $ hexo server |
4. Set information for your new blog
https://hexo.io/docs/configuration.html1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17$ vi _config.yml
~~~~~~~~~~~~~~~~~~ _config.yml ~~~~~~~~~~~~~~~~~~
# Site
title: yt8yt's note
subtitle:
description: yt8yt's personal blog
author: yt8yt
language:
timezone: Japan
# URL
## If your site is put in a subdirectory, set url as 'http://yoursite.com/child' and root as '/child/'
url: http://yt8yt.github.io/
root: /
permalink: :year/:month/:day/:title/
permalink_defaults:
5. Set information to use Git
https://github.com/hexojs/hexo-deployer-git1
2
3
4
5
6
7
8
9
10$ npm install hexo-deployer-git --save
$ vi _config.yml
~~~~~~~~~~~~~~~~~~ _config.yml ~~~~~~~~~~~~~~~~~~
# Deployment
## Docs: http://hexo.io/docs/deployment.html
deploy:
type: git
repo: git@github.com:yt8yt/yt8yt.github.io.git
branch: master
6. Set “watch” before starting your work
“watch” command can monitor your files.
https://hexo.io/docs/generating.html1
$ hexo generate --watch
7. Create a new post file
1 | $ hexo new first-post |
8. Edit the above file with Markdown or Hexo’s Helper
Hexo’s Helper
https://hexo.io/docs/helpers.html
I use Atom with “shift + control + m” when I use Markdown :-)
https://atom.io/
9. Delete “source/_posts/hello-world.md”
It’s not necessary to deploy.
10. Deploy your new blog!!
https://hexo.io/docs/deployment.html1
2$ hexo clean
$ hexo deploy
After writting the above command, you can see your new blog on GitHub Pages.
http://**.github.io/
11. Change your blog theme
https://github.com/hexojs/hexo/wiki/Themes1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20For instance, How to use the following theme.
https://hexo.io/hexo-theme-light/
## Install it
$ cd yt8yt.github.io
$ git clone git://github.com/tommy351/hexo-theme-light.git themes/light
## Update the above files
$ themes/light
$ git pull
## Set information to use the theme
$ cd yt8yt.github.io
$ vi _config.yml
~~~~~~~~~~~~~~~~~~ _config.yml ~~~~~~~~~~~~~~~~~~
# Extensions
## Plugins: http://hexo.io/plugins/
## Themes: http://hexo.io/themes/
theme: light
12. Create a new page file
https://hexo.io/docs/writing.html1
2
3
4
5
6$ hexo new page aboutme
INFO Created: ~/***/yt8yt.github.io/source/aboutme/index.md
$ cd source/aboutme/
$ vi index.md
13. Use “Read More”
Write <!-- more -->
in your articles.
14. Use Plugins
https://github.com/hexojs/hexo/wiki/Plugins