I used Hexo as my blogs framework and the theme is a modified version of the landscape theme, its really simple to use and integrate changes.
Hexo Installation
1 | # Verify required software for Hexo is installed, if not check the sweet video below |
Create Hexo Site
This is done via the Hexo CLI
1 | # barebones hexo, this will create the folder `myblog` and initialize hexo blogging framework |
Configuration Files:
- “blog config“ refer to the
_config.yml
in the blog root directory. - “theme config“ refer to the path
theme/landscape/_config.yml
Quick Start
Original links from the frameworks hello world starter post.
Create a new post
1 | $ hexo new "My New Post" |
More info: Writing
Run server
1 | $ hexo server |
More info: Server
Generate static files
1 | $ hexo generate |
More info: Generating
Deploy to remote sites
1 | $ hexo deploy |
More info: