이번 화 관련 영상들

Jekyll:highlighting navigation

Jekyll:include parameters

Jekyll:looping over posts

제어문과 파라미터 전달에 대해서 확인할 수 있는 강의다.

  {% if 조건 %}

  ...

  코드

  ...

  {% endif %}

위의 코드가 Jekyll의 if 문이다. 별 거 없다.

for문도 마찬가지로 별 거 없다.

{% for post in posts %}
  {% if post.url %}
    <li><a href=" {{ site.baseurl }} {{ post.url }}">{{ post.title }}</a></li>
  {% endif %}
{% endfor %}

위 코드는 posts 를 순회하면서 모든 post를 출력하는 category 페이지에서 사용된 루프의 일부이다.