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
{% if paginator.total_pages > 1 %} | |
<div class="pagination"> | |
{% if paginator.previous_page %} | |
<a class="prev" href="{{paginator.previous_page}}">← Prev</a> | |
{% endif %} | |
{% for page in (1..paginator.total_pages) %} | |
{% capture url %}/{{site.pagination_dir}}/page/{{page}}{% endcapture %} | |
{% if page == 1 %} | |
{% assign url = "/" %} | |
{% endif %} |
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
def icon(name, size=1) | |
#icon("camera-retro") | |
#<i class="icon-camera-retro"></i> | |
html = "<i class='icon-#{name}' " | |
html += "style='font-size:#{size}em' " | |
html += "></i>" | |
html.html_safe | |
end | |