Skip to content

Commit

Permalink
fix: !home page excerpt style error
Browse files Browse the repository at this point in the history
  • Loading branch information
kitian616 committed Nov 5, 2017
1 parent bf9a282 commit 4dc5b96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ TeXt 是针对博客的一款简洁的主题,它虽然简洁但并不简单。

可以在头信息里设置文章的一些基本信息,包括标题、发布时间和标签等。当然,如果你不设置标题和发布时间,系统会使用文件名中的标题和发布时间,具体详见 [Jekyll: 头信息](http://jekyllcn.com/docs/frontmatter/)。当然,该主题在原有的基础上增加了一些属性,这在后面会讲到。

需要注意的是,该主题的文章列表摘要会默认最多 200 个单词(汉字)的内容。若想控制摘要内容,需要在文章中想要显示到的地方加上 `<!--more-->` 行,具体详见 [Jekyll: 文章摘要](http://jekyll.com.cn/docs/posts/#_6)
需要注意的是,该主题的文章列表摘要会默认文章的全部内容。若想控制摘要内容,需要在文章中想要显示到的地方加上 `<!--more-->` 行,具体详见 [Jekyll: 文章摘要](http://jekyll.com.cn/docs/posts/#_6)

### 安装环境(非必须)

Expand Down
2 changes: 1 addition & 1 deletion _layouts/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h1>
<a href="{{ post.url | prepend: site.baseurl | replace: '//', '/' }}">{{ post.title }}</a>
</h1>
<div class="m-article-content">
{{ post.excerpt | truncatewords: 200 }}
{{ post.excerpt }}
</div>
<a href="{{ post.url | prepend: site.baseurl | replace: '//', '/' }}">Click to read more ...</a>
{% include blog/article-data.html %}
Expand Down

0 comments on commit 4dc5b96

Please sign in to comment.