Init Jekyll Theme
This commit is contained in:
parent
ef6d8f23ef
commit
e5d20c0faf
161 changed files with 11696 additions and 0 deletions
14
_includes/for-loop-definition-list.html
Normal file
14
_includes/for-loop-definition-list.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<dl>
|
||||
{% for post in site.posts reversed %}
|
||||
{% if post.categories contains include.list-category %}
|
||||
<dt>
|
||||
<a href="{{ site.url }}{{ post.url }}">{% if post.chapter != nil %}{{ post.chapter }}. {% endif %}{{ post.title }}</a>
|
||||
</dt>
|
||||
{% if post.description %}
|
||||
<dd>
|
||||
{{ post.description }}
|
||||
</dd>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</dl>
|
Reference in a new issue