Giter VIP home page Giter VIP logo

hexo-theme-sunny's Introduction

sunny 主题安装及 Hexo 使用教程

预览

主题的一些特性

  1. 主题源于hexo-theme-xups

使用指引

  1. 安装hexo

    npm i hexo-cli -g
    hexo init blog
    cd blog
    npm install
    
  2. 将主题拉到本地,并解压

    cd themes
    git clone https://github.com/sunnyShining/hexo-theme-sunny
    
  3. 配置 _config.yml 的 theme 配置

    theme: hexo-theme-sunny
    
  4. 运行 hexo s --watch

    cd ..
    hexo generate # 或者 hexo g
    hexo s --watch
    

    运行上述命令后,浏览器打开 http://localhost:4000 即可本地访问我们的网站

创建文章

有两种方法创建文章,可任选其一:

注意:文件名不要出现中文!!!

  1. 使用hexo new 命令

    $ hexo new "My New Post"
  2. 拷贝现有的文章进行修改

    hexo使用markdown来编辑文章,在source目录下,拷贝任意md文件进行创建新的文章。具体可参考下hexo的官方说明

文章规范

  1. 使用markdown写博文

  2. 建议图片进行单独 cdn 存储

  3. 标准配图

    • sunny主题现默认有0-9共10张博客配图
    • 博客封面配图:200x140,命名:xxx_thumbnail
  4. 指明文章的标题、作者信息、封面图片地址、博客摘要

    ---
    title: {{ title }}
    date: {{ date }}
    author:
    tags:
    categories:
        - Web技术
        - 生活琐事
    thumbnail:
    blogexcerpt:
    
    ---
    
    

    另外, 如果您需保留原主题的关于页(about)、留言页面(comment)、实验室页(lab)的话, 请将 __source/ 目录下的 about/、comment/、lab/ 三个目录及里面的页面放到您的 Hexo 程序的 source 目录下(注意不是theme主题下的目录);将 __scaffolds 目录下的 draft.md、page.md、post.md 放到 Hexo 程序的 scaffolds 目录(注意不是theme主题下的目录)。

  5. 利用<!-- more --> 或者post.blogexcerpt设置文章的摘要

    示例:

    
    ---
    title: 文章标题
    blogexcerpt: 这里是自定义文章摘要
    ...
    ---
    
    这里是文章正文内容
    ...
    
    

    这部分是文章摘要,这部分是文章摘要。在hexo模版里可通过 <%- post.blogexcerpt || post.excerpt || post.content %> 来引用。

    • post.blogexcerpt:自定义摘要
    • post.excerpt:通过<!-- more -->分隔符来获取的文章摘要
    • post.content:如不设置摘要情况,则直接输出文章全部内容

评论系统

  1. 创建 Github Application

  2. 创建仓库

  3. 主题 _config.yml 配置

    #----------------------------
    # 是否开启评论
    #----------------------------
    comment:
      enable: false      # 是否开启配置
      owner: jangdelong  # 你的 github 账户名
      repo: blog_comments # github repository
      client_id: xxxxxxxxxx # github application client id
      client_secret: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx # github application secret

其他

LICENCE

The MIT License (MIT)

hexo-theme-sunny's People

Contributors

jangdelong avatar sunnyshining avatar zenfery avatar

Stargazers

 avatar

Watchers

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