Go to file
curben 0bb968a58c Set background color of inline code snippet
More contrast like code block
2018-09-30 13:27:40 +09:30
scaffolds first commit 2016-02-29 20:25:06 +06:00
source Remove gzip from CI 2018-09-29 15:33:51 +09:30
themes/typing Set background color of inline code snippet 2018-09-30 13:27:40 +09:30
.gitignore first commit 2016-02-29 20:25:06 +06:00
.gitlab-ci.yml Remove gzip from CI 2018-09-29 15:33:51 +09:30
.snyk Replace hexo-autonofollow with hexo-filter-nofollow 2018-09-28 12:17:40 +09:30
README.md Update installation guide 2018-09-23 10:35:41 +09:30
_config.yml Disable fancybox temporarily 2018-09-29 18:18:56 +09:30
package-lock.json Switch from hexo-filter-nofollow to hexo-nofollow 2018-09-29 22:57:33 +09:30
package.json Switch from hexo-filter-nofollow to hexo-nofollow 2018-09-29 22:57:33 +09:30

README.md

curben.gitlab.io

Build Status https://www.npmjs.com/package/hexo

Forked from GitLab's Hexo example with Typing theme.

Installation

  1. Change <folder> to a preferred name.
git clone https://gitlab.com/curben/curben.gitlab.io <folder>
  1. Install Node.js.
# Installing npm will also install nodejs as dependency.
# Ubuntu/Debian
sudo apt-get install npm
# Fedora/Red Hat
sudo yum install npm
# Arch Linux
sudo pacman -S npm
  1. Install Hexo and its dependencies (defined in package.json).
$ sudo npm install -g hexo-cli
$ cd <folder>
$ npm install
  1. Generate static files to check for any error. You should always do this before pushing/merging commits to the master branch.
$ hexo generate

Quick Start

Create a new post

$ hexo new "My New Post"

More info: Writing

Run server

$ hexo server

More info: Server

Generate static files

$ hexo generate

More info: Generating

Deploy to remote sites

$ hexo deploy

More info: Deployment

Changes

The following are the major changes I made from the upstream.

Hexo

  • Update .gitlab-ci.yml to use the latest version of Node.js in the Docker image.
  • Update package.json to use latest version of hexo and its related packages.
  • Replace the bundled Landscape theme with Typing theme.

Typing theme

  • Homepage shows index of posts.
  • Remove header and footer display (except for /about page).
  • Use the latest version of jQuery, fancyBox and Font Awesome
  • All js and css files are self-hosted and pre-compressed.
  • Remove analytic, comment system and donation links.

Useful links: Hexo Docs GitLab Pages