---
title: News
in_menu: false
sort_info: 30
--- pipeline:tags,blocks,fragments
News
Atom-Feed
--- name:newsdata pipeline:erb
<%
opts = {:alcn => '/news/*.html', :sort => 'sort_info', :reverse => true, :flatten => true}
context.website.ext.item_tracker.add(context.dest_node, :nodes, :node_finder_option_set,
{:opts => opts, :ref_alcn => context.node.alcn}, :content)
context.website.ext.node_finder.find(opts, context.node).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 %>