All Projects → zoeingwingkei → frame

zoeingwingkei / frame

Licence: MIT license
Frame is a minimal, elegant hexo theme.

Programming Languages

stylus
462 projects
EJS
674 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to frame

Hexo Theme Overdose
⚠ Caution: you could be overdosed with this theme.
Stars: ✭ 137 (+174%)
Mutual labels:  hexo, blog-theme, hexo-theme
Hexo Theme Pure
Hexo theme pure. It's a pure theme for Hexo.
Stars: ✭ 751 (+1402%)
Mutual labels:  hexo, blog-theme, hexo-theme
Hexo Theme Lx
👉 A simple & clear & elegant Hexo theme. 🔭🔭Lx——一款简洁、美观的Hexo博客主题。
Stars: ✭ 144 (+188%)
Mutual labels:  hexo, blog-theme, hexo-theme
Yinwang
Blog Theme For Hexo
Stars: ✭ 133 (+166%)
Mutual labels:  hexo, blog-theme, hexo-theme
Hexo Theme Shana
what's a cool hexo theme!
Stars: ✭ 166 (+232%)
Mutual labels:  hexo, blog-theme, hexo-theme
Hexo Theme Nlvi
🎨A simple theme for hexo.
Stars: ✭ 213 (+326%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Cafe
精简的Hexo博客主题,样式风格如阮一峰老师博客
Stars: ✭ 215 (+330%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Daily
A simple theme for Hexo
Stars: ✭ 246 (+392%)
Mutual labels:  hexo, hexo-theme
hexo-theme-sungod
一款定制化的Hexo博客主题
Stars: ✭ 470 (+840%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Pln
📝 Plain theme for Hexo.
Stars: ✭ 186 (+272%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Geek
一个符合极客精神主义极简的 Hexo 主题
Stars: ✭ 251 (+402%)
Mutual labels:  hexo, hexo-theme
hexo-theme-amber
🎉 A bootstrap blog theme for hexo
Stars: ✭ 47 (-6%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Hiero
An awesome magazine, blog theme for your Hexo site.
Stars: ✭ 209 (+318%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Hipaper
A fashional newspaper theme for Hexo.
Stars: ✭ 204 (+308%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Fluid
🌊 一款 Material Design 风格的 Hexo 主题 / An elegant Material-Design theme for Hexo
Stars: ✭ 3,700 (+7300%)
Mutual labels:  hexo, hexo-theme
Hexo Theme Ochuunn
A simple green super hexo theme.
Stars: ✭ 202 (+304%)
Mutual labels:  hexo, hexo-theme
hexo-theme-quark
a simple hexo theme https://pcrab.xyz
Stars: ✭ 34 (-32%)
Mutual labels:  hexo, hexo-theme
hexo-theme-kaze
⛵ A responsive, modern Hexo theme
Stars: ✭ 172 (+244%)
Mutual labels:  hexo, hexo-theme
hexo-theme-mip
Hexo MIP 模板
Stars: ✭ 15 (-70%)
Mutual labels:  hexo, hexo-theme
hexo-theme-concise
A beautiful and simple theme for hexo
Stars: ✭ 18 (-64%)
Mutual labels:  hexo, hexo-theme

English | 简体中文

cover

Frame is a minimal hexo theme. Inspired by traditional paintings and their frames, Frame is designed to showcase personal blogs, profiles, or portfolios in a concise and elegant way.

👉 Demo Site

Getting started

Installation

If this is your first time using hexo, please go to the official hexo website to install and initialize your hexo project. Then, clone the theme in your hexo project:

# go to your hexo theme folder
cd themes

# clone the project
git clone https://github.com/zoeingwingkei/frame.git

Configuration

Go to the hexo configuration file config.yml, and change the following theme settings:

theme: frame

Run Server

Now that Frame is all set up 👌. You can test the theme through:

hexo server

Color Mode

Frame provides 3 color modes: default, classic and dark.

color mode

To change the color mode, go to the config.yml file under the frame theme folder, and modify the following settings:

# color mode: default / classic / dark
color_mode: classic

Gallery View

Frame provides a gallery view, where blog posts are presented with their featured images and tags. Simply add a category "gallery" to your post, then it would be listed in the gallery view.

categories:
- [gallery]

The featured image of the post can also be added to the Front-matter of the post:

featured_image: /path/to/your/image.jpg 

Profile Page

The profile page, or the home page, is the very first page of your site. By default, there is a title, some body text, several links and a profile image on this page. You can customize the content of your profile at the config.yml file of the theme:

# profile
profile:
  title: Your profile title.
  body: Your profile body
  image: /path/to/your/image.jpg 

  links:
  	Blogs: /archive/
  	Resume: /path/to/your/resume.pdf
  	Projects: /categories/gallery/

In case you prefer to customize your profile page, go to frame/layout/pages/profile.ejs and modify the layout and style of your own page, have fun 🙌.

Tag Page

Frame provides a tag cloud on the /tag/ page, which contains all possible tags in your blog. In order to set up the tag cloud, you need to create a hexo page named tag.

hexo new page tag

Inside the source/tag/index.html file, type the following:

---
title: '''tag'''
layout: tag
---

Configurations

Header

The header is simply consist of a site logo and a navigation menu, you can change those content at the config.yml file under the theme folder. You can upload an image as the site logo, otherwise it would be your site name.

# header
site_brand_name: Frame.

logo_image:
  enable: true
  image_path: /logo.png # path to your logo image

menu:
  Home: /
  Archive: /archives/
  Gallery: /categories/gallery/
  About: /about/

Footer

You can also customize the content of your footer at the config.yml file:

# footer
footer:
  copyright_info:
    enable: true
    author: © Your name

  powered_by: # Powered by Hexo & Frame
    enable: true

  other_info:
    enable: true
    content: Customized content.

Favicon

Add your own favicon of the website at the frame/source/ folder, then configure it at the config.yml file:

# favicon
favicon: /favicon.ico

Math

In case you would like to use math equations in your blog, go to the config.yml file and turn on the MathJax tool:

# mathjax setting
mathjax_enable: true

Note: if you haven't install the hexo math plugin, you need to install it first:

npm i hexo-math --save

Blog Comments

Frame now supports third-party comment systems: valine and disqus. A detailed description can be found in this post.

Local Search

Frame now supports local search with the hexo plugin hexo-generator-searchdb. A detailed description can be found in this post.

License

This project is released under MIT License.

All the images used in the demo site are the works from Claude Monet (1840 - 1926), which is considered to be in the public domain in its country of origin and other countries and areas.

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].