Skip to content

Instantly share code, notes, and snippets.

View chada's full-sized avatar

Charles Chiu chada

View GitHub Profile
@vassilis
vassilis / octopress-pagination
Created August 21, 2012 19:18
Octopress Pagination
{% if paginator.total_pages > 1 %}
<div class="pagination">
{% if paginator.previous_page %}
<a class="prev" href="{{paginator.previous_page}}">&larr; Prev</a>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% capture url %}/{{site.pagination_dir}}/page/{{page}}{% endcapture %}
{% if page == 1 %}
{% assign url = "/" %}
{% endif %}
@ciscodesign
ciscodesign / Helper
Created March 18, 2012 22:51
Helper to use Font Awesome with Rails
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