content/tags/programming.textile
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
-----
:type: page
:permalink: programming
:title: "Tag: programming"
:filters_pre:
- erb
- redcloth
-----
11 items are tagged with _programming_:
<% @site.pages.select{|p| p.attributes[:tags] && p.attributes[:tags].include?('programming')}.sort{|a,b| a.attributes[:date] <=> b.attributes[:date]}.reverse.each do |pg|
dir = (pg.attributes[:type] == 'page') ? '' : '/articles'
%>* <span class="<%= pg.attributes[:type] %>_link"> <a href="<%= dir %>/<%= pg.attributes[:permalink] %>/"><%= pg.attributes[:title] %></a></span>
<% end %>
|