This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
tuxbliki/app/views/news/index.html.erb

28 lines
567 B
Plaintext
Raw Normal View History

2008-06-27 00:13:15 -04:00
<% throw_content :for_sidebar do -%>
<div class="tag_cloud">
2008-06-27 00:13:15 -04:00
<p>Popular Tags</p>
<%= tag_cloud @tags %>
</div>
2008-07-23 01:39:55 -04:00
<div id="related_links">
<div class="title"><%= tuxconfig[:related_links_title] -%></div>
2008-06-27 00:13:15 -04:00
<p>
<%= tuxconfig[:related_links].join('<br />') %>
2008-06-27 00:13:15 -04:00
</p>
</div>
<% end -%>
<% if @news.empty? -%>
<p><strong><em>There are no news posts, yet.</em></strong></p>
<% else -%>
<% @news.each do |page| -%>
<%= partial 'pages/page', :with => [ page ] %>
<% end -%>
2008-06-27 21:28:18 -04:00
<%= partial 'shared/pagination_links' %>
2008-06-27 00:13:15 -04:00
2008-06-27 01:14:53 -04:00
<% end -%>