Coder Social home page Coder Social logo

fyf2016 / hexo-theme-matery Goto Github PK

View Code? Open in Web Editor NEW

This project forked from blinkfox/hexo-theme-matery

2.0 1.0 0.0 9.33 MB

hexo博客主题 mastery

Home Page: https://fyf2016.github.io/

License: Apache License 2.0

HTML 57.32% CSS 38.58% JavaScript 4.11%

hexo-theme-matery's Introduction

hexo-theme-matery

HitCount Gitter GitHub issues GitHub license Download Hexo Version GitHub forks GitHub stars

中文说明 | DEMO

This is a Hexo blog theme with 'Material Design' and responsive design.

Features

  • Simple and beautiful, and post is Beautiful and readable.
  • Material Design.
  • Responsive design,which can be displayed well on desktop, tablet, mobile phone, etc.
  • Changing 'banner' picture dynamically everday.
  • Blog posts list with waterflow(There will be 24 images if the articl dosn't have featured pictures).
  • Archive page with timeline.
  • Tags page of the word cloud and categories page of the radar chart
  • Rich 'About' page (including about me, posts charts, my projects, my skills, gallery etc.)
  • Friendly link page for customizable data
  • Support post topping and rewards
  • Support MathJax
  • TOC
  • Can be set append the copyright information when copying the content of the post
  • Can be set to do password verification when reading a post
  • Comment module of Gitalk, Gitment, Valine and Disqus.(Gitalk is recommended)
  • Integrated Busuanzi Statistics And Google Analytics

Next development plans

  • Refactoring tags page as paginable
  • Refactoring Archives page as paginable
  • Add category page
  • Add about me page
  • Read the post verification password
  • Integrated Gitalk comment
  • Add fork me on github in the upper right corner
  • Add the RSS feed
  • Add post detatil of TOC
  • At the bottom of the site, add statistics such as traffic(Theme users can implement based on Google Analytics, Baidu Statistics, LeanCloud, etc.)
  • design Index Page and support to add top posts
  • Add rewards function after the posts ends
  • Add a cute pet or growth tree for blogs, etc.(Can be implemented using the hexo-helper-live2d plugin)
  • Integrated Valine
  • add the ability to read the post verification password
  • added support for MathJax
  • Make a LOGO
  • Add a friendship link page
  • Append blog copyright information when copy post content
  • Add the 'love' effect of the click page

Welcome to contribute!

Download

You should have a Hexo blog when you see it here.If not,try to use the hexo and Markdown to write your blog and post. Click here to download master branch of the last stable version of the code.After decompressing,copy the hexo-theme-matery folder to your themes folder of your Hexo.Of course,you can uer Git clone to download in your themes folder.

git clone https://github.com/blinkfox/hexo-theme-matery.git

Configuration

Modify theme

Modify the value of theme in _config.yml of Hexo's root folder: theme: hexo-theme-matery.

Suggestions for other changes to the _config.yml:

  • Please modify the value of url of _config.yml to your website's main URL (eg http://xxx.github.io).
  • Recommended modify the value of the two 'per_pageto be a multiple of6, such as: 12, 18`, etc. so that the posts list can be displayed well under each screen.
  • If you are a Chinese user, it is recommended to change the value of language to zh-CN.

new categories page

categories page is to show all of categories. If the source directory of your blog doesn't have categories/index.md file, you need to new one like this:

hexo new page "categories"

to edit your new page files/source/categories/index.md, you need somethings as follows:

---
title: categories
date: 2018-09-30 17:25:30
type: "categories"
layout: "categories"
---

new tags page

tags page is to show all of tags. If the source directory of your blog doesn't have tags/index.md file,you need to new one like this:

hexo new page "tags"

to edit your new page files/source/tags/index.md, you need somethings as follows:

---
title: tags
date: 2018-09-10 18:23:38
type: "tags"
layout: "tags"
---

new about page

about page is to show my blog and myself information. If the source directory of your blog doesn't have about/index.md file, you need to new one like this:

hexo new page "about"

to edit your new page files/source/about/index.md, you need somethings as follows:

---
title: about
date: 2018-09-30 17:25:30
type: "about"
layout: "about"
---

new friends link page (Optional)

The friends page is a page for displaying Friendly Links information. If you don't have a friends/index.md file in your blog's source directory, then you need to create a new one. The command is as follows:

hexo new page "friends"

Edit the file /source/friends/index.md you just created, at least you need the following:

---
title: friends
date: 2018-12-12 21:25:30
type: "friends"
layout: "friends"
---

Also, create a new _data directory in your blog's source directory and a new friends.json file in the _data directory. The contents of the file are as follows:

[{
    "avatar": "http://image.luokangyuan.com/1_qq_27922023.jpg",
    "name": "MaJang",
    "introduction": "I am not a master, just looking for the master's footsteps.",
    "url": "http://luokangyuan.com/",
    "title": "Read More"
}, {
    "avatar": "http://image.luokangyuan.com/4027734.jpeg",
    "name": "Blinkfox",
    "introduction": "Hello, I'm blinkfox, I like programming.",
    "url": "https://blinkfox.github.io/",
    "title": "Visit Blog"
}, {
    "avatar": "http://image.luokangyuan.com/avatar.jpg",
    "name": "ja_rome",
    "introduction": "Ordinary steps can also go out of the great journey.",
    "url": "ttps://me.csdn.net/jlh912008548",
    "title": "Read More"
}]

Code highlight

Hexo theme uses Hexo's pluginhexo-prism-plugin to show the code highlight instead of its own theme.The Installation commands are as follows:

npm i -S hexo-prism-plugin

Then,modify the value of highlight.enable to false in _config.yml file of Hexo root folder,and add the configuration of prism plugin as follows:

highlight:
  enable: false

prism_plugin:
  mode: 'preprocess'    # realtime/preprocess
  theme: 'tomorrow'
  line_number: false    # default false
  custom_css:

Search

The theme uses the Hexo pluginhexo-generator-search to search the content,and the Installation commands are as follows:

npm install hexo-generator-search --save

Add configuration of _config.yml file in Hexo root folder as follows:

search:
  path: search.xml
  field: post

Translate Chinese Link to Pinyin (Optional)

Defualt permalinks of Hexo will include Chinese if your atrticle's title is Chinese.But it's adverse to SEO,and gitment comments don't suport Chinese Link as well.We can use the hexo-permalink-pinyin of Hexo plugin to generate permalinks of Chinese Pinyin when generating posts.

Installation commands are as follows:

npm i hexo-permalink-pinyin --save

Add such configurations in _config.yml file of Hexo:

permalink_pinyin:
  enable: true
  separator: '-' # default: '-'

*Note:hexo-abbrlink can genarate non-Chinese link in addtion to this plugin.

Add RSS feed support (Optional)

The theme uses the Hexo pluginhexo-generator-feed to support RSS feed , and the Installation commands are as follows:

npm install hexo-generator-feed --save

Add configuration of _config.yml file in Hexo root folder as follows:

feed:
  type: atom
  path: atom.xml
  limit: 20
  hub:
  content:
  content_limit: 140
  content_limit_delim: ' '
  order_by: -date

Execute hexo clean && hexo g to regenerate the blog file, and then you can see the atom.xml file in the public folder, indicating that you have successfully installed.

Modify website footer

Website footer may need to be customized, and it is not convenient to make configuration information, So need to modify and process it by yourself. The changes are in the /layout/_partial/footer.ejs file, including the site, the theme used, the amount of traffic, and so on.

Modify social links

In the /layout/_partial/social-link.ejs file of the theme, you can modify or add the social link address you need. To add a link, please refer to the following code:

<a href="https://github.com/blinkfox" class="tooltipped" target="_blank" data-tooltip="访问我的GitHub" data-position="top" data-delay="50">
    <i class="fa fa-github"></i>
</a>

You can search social icon such as fa-github in Font Awesome.There are common social icons you can reference:

  • Facebook: fa-facebook
  • Twitter: fa-twitter
  • Google-plus: fa-google-plus
  • Linkedin: fa-linkedin
  • Tumblr: fa-tumblr
  • Medium: fa-medium
  • Slack: fa-slack
  • Sina Weibo: fa-weibo
  • Wechat: fa-wechat
  • QQ: fa-qq

Note: The version of Font Awesome is 4.5.0.

Post Front-matter example

The following are post Front-matter example,and all content is not required.But we still suggest you write the value of title.Of course ,you'd better write all of these information.

---
title: typora-vue-theme Theme introduction
date: 2018-09-07 09:25:00
author: Qi Zhao
img: /source/images/xxx.jpg # or:http://xxx.com/xxx.jpg
top: true # If top value is true, it will be the homepage recommendation post
# If you want to set the reading verification password for the post, 
# you can set the password value, which must be encrypted with SHA256 to prevent others from seeing it.
password: 8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92
# Does this post open mathjax, Need to be activated in the theme's _config.yml.
mathjax: false
categories: Markdown
tags:
  - Typora
  - Markdown
---

Note:

  1. post's featured piature will take remainder if not writing the img property,and chose the featured picture of theme to let all of post's picture have their own characteristics.
  2. The value of date should try to ensure that each article is unique, because Gitalk and Gitment recognize id in this topic are uniquely identified by the value of date.
  3. If you want to set the ability to read the verification password for the article, you should not only set the value of the password with SHA256 encryption in Front-matter, but also activate the configuration in the theme _config.yml.

Screenshot

Home

首页

首页推荐文章

首页文章列表

首页文章列表

首页文章列表

Custom modification

You can modify some custom modification in _config.yml as follows:

  • Menu
  • Inspirational quotes on Home
  • Whether to display the title of the recommended posts
  • favicon and Logo
  • profiles
  • TOC
  • post rewards
  • Append copyright information when copying article content
  • MathJax
  • the 'love' effect of clicking on the page
  • My Projects
  • My Skills
  • My Gallery
  • Gitalk, Gitment, Valine and Disqus
  • Busuanzi Statistics And Google Analytics
  • The map of default featured pictures. The theme will take remainde according to hashcode of post title if the post dose not set featured piactures.

I think everyone should have their own style and feature of blog。if you are not satisfiled with functions and theme color,you can modify by yourself,and more free functions and deatil need to be modified by modify source code when it is hard to be finished in _config.yml.

modeing theme color

Search .bg-color to modify background color in /source/css/matery.css in theme file:

/* The overall background color, including navigation, mobile navigation, footer, tab, etc.. */
.bg-color {
    background-image: linear-gradient(to right, #4cbf30 0%, #0f9d58 100%);
}

/* The color of the text with the same background color is only used in one place on the front page. You can also apply it to other places.*/
.text-color {
    color: #0f9d58 !important;
}

@-webkit-keyframes rainbow {
   /* Dynamically switch background colors. */
}

@keyframes rainbow {
    /* Dynamically switch background colors. */
}

Modify banner picture and post's featured pictures

You can change banner pictures in /source/medias/banner as you like .Theme code can switch dynamically every day and just need 7 pictures.If you master JavaScript,you can change it to your favorite swithing logic,such as Random switching.The code of switching banneris in <script></script> of /layout/_partial/bg-cover.ejsfile.

$('.bg-cover').css('background-image', 'url(/medias/banner/' + new Date().getDay() + '.jpg)');

There are 24 featured pictures in /source/medias/featureimages,you can add or delete,and modify it in _config.yml at the sametime.

hexo-theme-matery's People

Contributors

blinkfox avatar luokangyuan avatar bcjz-code avatar xuqianjin-stars avatar chunchengwei avatar ltcj avatar

Stargazers

 avatar fyf avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.