khw11044 / githubpagesamplecode

블로그 샘플
Other
2 stars 1 forks source link

[GithubPages] 11.하루만에 만드는 깃허브 블로그-버튼추가하기 #3

Open khw11044 opened 3 years ago

khw11044 commented 3 years ago
<div class="page-control">
    <div>
        {% if page.previous.url %}
        <a id="prev" class="button" href="{{ page.previous.url }}">&laquo; {{ page.previous.title }}</a>
        {% endif %}
    </div>
    <div>
        {% if page.next.url %}
        <a id="next" class="button" href="{{ page.next.url }}">{{ page.next.title }} &raquo;</a>
        {% endif %}
    </div>
</div>