All Projects → esappear → Hexo Theme Clover

esappear / Hexo Theme Clover

Clover theme for Hexo.

Projects that are alternatives of or similar to Hexo Theme Clover

Hexo Theme Varaint
varaint for Hexo
Stars: ✭ 159 (-7.56%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Mdui
Stars: ✭ 167 (-2.91%)
Mutual labels:  hexo, hexo-theme
Yinwang
Blog Theme For Hexo
Stars: ✭ 133 (-22.67%)
Mutual labels:  hexo, hexo-theme
Generator Hexo Theme
Generate a hexo theme: ejs, pug, swig, nunjucks | Moved to https://tcrowe.commons.host/contact
Stars: ✭ 119 (-30.81%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Lx
👉 A simple & clear & elegant Hexo theme. 🔭🔭Lx——一款简洁、美观的Hexo博客主题。
Stars: ✭ 144 (-16.28%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Aomori
A Hexo Theme. Hexo 博客主题
Stars: ✭ 122 (-29.07%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Lite
Keep Calm, Light and Writing. Light Hexo Theme.
Stars: ✭ 148 (-13.95%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Doku
📜 Doku, a Hexo theme designed for writing documents.
Stars: ✭ 101 (-41.28%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Aath
Hexo 主题
Stars: ✭ 154 (-10.47%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Overdose
⚠ Caution: you could be overdosed with this theme.
Stars: ✭ 137 (-20.35%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Primer
The github style (primer) for Hexo theme.
Stars: ✭ 117 (-31.98%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Amazing
Demo: https://removeif.github.io/removeif-demo hexo-theme
Stars: ✭ 154 (-10.47%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Ylion
😊 说不定是一个让你感到惊喜的hexo主题 🍻 🍬
Stars: ✭ 110 (-36.05%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Vateral
😘hexo单页面主题:Vateral(a theme for hexo)
Stars: ✭ 133 (-22.67%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Spectre
A modern, simple & elegant theme for Hexo
Stars: ✭ 109 (-36.63%)
Mutual labels:  hexo, hexo-theme
Flex Block
一个基于Hexo的主题
Stars: ✭ 133 (-22.67%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Melody
🎹A simple & beautiful & fast theme for Hexo.
Stars: ✭ 1,306 (+659.3%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Oranges
🍊A simple hexo theme of minimalism
Stars: ✭ 95 (-44.77%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Tranquilpeak
💄 A gorgeous responsive theme for Hexo blog framework
Stars: ✭ 1,740 (+911.63%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Shana
what's a cool hexo theme!
Stars: ✭ 166 (-3.49%)
Mutual labels:  hexo, hexo-theme

Clover

Preview

preview

Prerequisite

You got a blog project built by Hexo. Your project directory should like this:

_config.yml  node_modules  package.json  public  scaffolds  source  themes

Installation

  • Clone the repository.
git clone https://github.com/esappear/hexo-theme-clover themes/clover
  • Set theme in _config.yml file of the project root:
theme: clover
  • Add hexo-renderer-sass
npm install hexo-renderer-sass --save

Features

Free home page.

You can set posts of specific categories or tags in home page.

home:
  # set card style of home page
  # card: project-card
  category: Projects
  tag:
    - js
    - css
  except_category: Something
  except_tag: 'someTag'

Post which belongs to category or tag and don't belongs to except_category or except_tag will be filtered.

Page excerpt and photos

You can set an excerpt or photos in Front-matter.

---
layout: post
title: my_post_title
excerpt: my_post_excerpt
photos: [my_photo_url]
---

Tags page.

  • Create a page named tags
    hexo new page "tags"
    
  • Edit tags page, set page layout to tag.
    ---
    layout: tag
    title: tags
    date: 2018-10-05 12:12:53
    ---
    

Categories page.

  • Create a page named categories
    hexo new page "categories"
    
  • Edit categories page, set page layout to category.
    ---
    layout: category
    title: categories
    date: 2018-10-05 12:12:53
    ---
    

About page.

  • Create a page named about
    hexo new page "about"
    
  • Edit categories page, set page layout to about.
    ---
    layout: about
    title: about
    date: 2018-10-05 12:12:53
    ---
    

Social Media

social:
  GitHub: your-url
  Dribbble: your-url
  Behance: your-url
  Lofter: your-url
  Instagram: your-url

Custom Menu

menu:
  Project: /
  Stuffs: /tags/Stuffs
  Archive: /archives
  About: /about

Card Style

Two kinds of card style: project-card and article-card. (Never mind the name.)

card_style:
  home: project-card
  archive: article-card
  tag: article-card
  category: article-card

Code Highlight

  • You should disable the default highlight setting in .config.yml and then get gihub-style code highlight powered by hight.js.
highlight:
  enable: false
  • declare language of code
```js
console.log('hello world);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].