all repos — h3rald @ 4645748014a32c07f7f121bfa921180463fcc9f2

The sources of https://h3rald.com

content/tags.erb

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
----- 
permalink: tags
filters_pre: 
- erb
title: Tags
type: page
-----
<%
  tags = sorted_site_tags
%>
<% c = 0
tags.each do |t|
  c = c+1 %>
  <%= %{<div class="row">} if c%6 == 1 %>
    <div class="span2"><%= tag_link_with_count(t[0], t[1]) %></div>
    <%= "</div>" if c%6 == 0 %>
<% end %></div>