https://github.com/kelimuttu/cactus-light
🌵 A responsive, light and simple theme for Hexo.
https://github.com/kelimuttu/cactus-light
blog cactus hexo theme
Last synced: about 2 months ago
JSON representation
🌵 A responsive, light and simple theme for Hexo.
- Host: GitHub
- URL: https://github.com/kelimuttu/cactus-light
- Owner: kelimuttu
- License: other
- Created: 2017-02-11T17:51:50.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-11T18:06:07.000Z (over 8 years ago)
- Last Synced: 2025-03-21T09:01:43.412Z (2 months ago)
- Topics: blog, cactus, hexo, theme
- Language: CSS
- Size: 1.75 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cactus Light
A responsive, light and simple [Hexo](http://hexo.io) theme for a personal website.
:cactus: [Demo](https://kelimuttu.github.io/cactus-light/)

## Summary
- [General](#general)
- [Features](#features)
- [Install](#install)
- [Configuration](#configuration)
- [License](#license)## General
- **Version** : 2.0
- **Compatibility** : Hexo 3 or later## Features
- Fully responsive
- Disqus
- Googe analytics
- Font Awesome icons
- Pick your own code highlighting scheme
- Configurable navigation menu
- Projects list
- Simplicity## Install
1. In the `root` directory:```git
$ git clone https://github.com/kelimuttu/cactus-light.git themes/cactus-light
$ npm install hexo-pagination --save
```2. Change the `theme` property in the `config.yml` file.
```yml
# theme: landscape
theme: cactus-light
```3. Run: `hexo generate` and `hexo server`
## Configuration
### Navigation
Setup the navigation menu in the theme's `_config.yml`:
```
nav:
Home: /
About: /about/
Articles: /archives/
Contact: /contact/
LINK_NAME: URL
```### RSS
Set the `rss` field in the theme's `_config.yml` to one of the following values:
1. `rss: false` will totally disable rss (default).
2. `rss: atom.xml` sets a specific feed link.
3. `rss:`leave empty to use the [hexo-generator-feed](https://github.com/hexojs/hexo-generator-feed) plugin.### Analytics
Add you Google Analytics `tracking_id` to the theme's `_config.yml`.
```
plugins:
gooogle_analytics: 'UA-49627206-1' # Format: UA-xxxxxx-xx
```### Comments
First, create a site on Disqus: [https://disqus.com/admin/create/](http://disqus.com/admin/create/).
Next, update the theme's `_config.yml` file:
```
plugins:
disqus_shortname: SITENAME
```where `SITENAME` is the name you gave your site on Disqus.
### Code Highlighting
Pick one of [the available colorschemes](https://github.com/probberechts/cactus-dark/tree/master/source/css/_highlight) and add it to the theme's `_config.yml`:
```
customize:
highlight: COLORSCHEME_NAME
```## License
MIT