---
title: News
in_menu: true
sort_info: 30
--- pipeline:tags,blocks,fragments
News
Atom-Feed
--- name:newsdata pipeline:erb
<%
context.content_node.tree.node_access[:alcn].select do |na,no|
na =~ /\/news\/.+/ && no.is_file?
end.collect {|na,no| no}.sort.reverse.each do |node|
context.options['contentprocessor.kramdown.options'] = {:auto_id_prefix => node.lcn.tr('.', '-')}
%>
Published on <%= node['created_at'].strftime("%A, %d %B %Y") %>
<%= context.render_block(:name => 'content', :chain => [node]) %>
<% end %>