Last active
December 27, 2015 05:59
-
-
Save nobuhito/7278881 to your computer and use it in GitHub Desktop.
Jekyllでまとめファイルを作る
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% for p in extraction reversed %} | |
| {% if p.title contains include.param %} | |
| <h3> | |
| <a href="{{ p.url }}"> | |
| {{ p.title }} | |
| </a> | |
| </h3> | |
| <p> | |
| {{ p.content | markdownify | strip_html | strip_newlines | truncate: 256 }} | |
| </p> | |
| {% endif %} | |
| {% endfor %} | |
| {% assign extraction = nil %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| layout: page | |
| title: タイトル | |
| --- | |
| {% include JB/setup %} | |
| {% assign extraction = site.posts %} | |
| {% include JB/extraction param = page.title %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment