/ TECHNOLOGY

jekyll-now 에서 pagination 적용

jekyll-now에 보면, 관련 코드가 포함되어 있다. 근데 엉성하게 포함되어 있어 동작하지 않는다.

방법은 jekyll pagination에 보면 나와 있다.

짧게 말하면, _config.yml 에서 다음 추가

# Pagination
paginate: 5
paginate_path: "/page:num/"	

다음으로 index.html 수정

---
layout: default
title: My Blog
---

<!-- This loops through the paginated posts -->


<!-- Pagination links -->
<div class="pagination">
  
    <span class="previous">Previous</span>
  
  <span class="page_number ">Page:  of </span>
  
    <span class="next ">Next</span>
  
</div>

잘되는구나… ㅋㅋㅋㅋ