在source/_posts目录下存放文章,后缀为md或markdown都可
打开一篇文章,开头需要配置一下。
title: "hexo" date: 2015-02-02 00:00:00 -0700 tags: hexo category: hexo ---上面是一些最基本的配置,依次为 标题、日期、标签、分类
如果需要其他属性也可以添加。
默认显示的是如下英文格式,我们可以把它修改为按中文显示
打开根目录下的_config.yml文件找到
date_format: MMM D YYYY修改为:
date_format: YYYY年MM月D日效果如下:
注:如果出现乱码,请注意编码格式
hexo new page "about"然后到source/about/index.md 编辑内容。
在themes/light/_config.yml中,添加如下:
menu: Home: / Archives: /archives 关于: /about
1、在themes/light/layout/_widget中新建名为links.ejs的文件,编辑内容如下:
<div class="widget tag"> <h3 class="title">友情链接</h3> <ul class="entry"> <li><a href="itmyhome.com" title="itmyhome">麦田技术博客</a></li> </ul> </div>2、在themes/light/_config.yml中,添加如下:
widgets: - links
编辑md文件的时候,在要作为摘要的文字后面添加<!--more-->即可。
这是由于Google字体库引起的Hexo首页加载缓慢(巨慢)
解决方法:在hexo\themes\主题\source\css_base\variable.styl中,
找到 @import url("//fonts.googleapis.com/css?family=Lato:400,400italic") 这句并注释掉
重启即可
注:以上主要是针对light主题进行优化,其他主题也可参考以上内容。
原文首发:麦田技术博客
作者:itmyhome
原文地址:http://blog.csdn.net/itmyhome1990/article/details/43489361