ソースを参照

Correct a problem when using less than 3 blog article

In this case, the author is (badly) displayed. This patch hard limits blog posts to blog section.
tags/v1.0.0
divinerites 4年前
コミット
1c57d9724b
コミッターのメールアドレスに関連付けられたアカウントが存在しません
1個のファイルの変更2行の追加2行の削除
  1. 2
    2
      layouts/partials/blog.html

+ 2
- 2
layouts/partials/blog.html ファイルの表示

@@ -13,7 +13,7 @@
</div>
{{"<!-- /section title -->" | safeHTML}}

{{ range first 3 .Site.RegularPages }}
{{ range first 3 (where .Site.RegularPages "Section" "==" "blog")}}
{{ .Render "article"}}
{{ end }}

@@ -25,4 +25,4 @@
</div>
</section>
{{"<!-- /blog -->" | safeHTML}}
{{ end }}
{{ end }}

読み込み中…
キャンセル
保存