Sha256: c590b6b93f7bbd399fbc8f1de0926647d7b24f359d67f98fea9c46c0ee472d06

Contents?: true

Size: 923 Bytes

Versions: 2

Compression:

Stored size: 923 Bytes

Contents

<% content_for :title do %>
	<%= @post.title %> | <%=current_site_name%>
<% end %>

<% content_for :head do %>
	<%= spud_news_rss_link %>
	<meta name="description" content="<%= @post.meta_description %>" />
	<% if @post.meta_keywords.blank? %>
		<meta name="keywords" content="<%= @post.categories.collect{ |c| c.name }.join(',') %>" />
	<% else %>
		<meta name="keywords" content="<%= @post.meta_keywords %>" />
	<% end %>
<% end %>

<%cache ['news/show', @post] do%>
	<div class="spud_news_post">
		<h3><%= @post.title %></h3>
		<h4>Posted by <%= @post.author.try(:full_name) %> on <%= @post.display_date %></h4>
		<% if @post.categories.any? %>
		<p id="spud_news_post_categories">
			Filed under
			<%= raw(@post.categories.collect{ |c| link_to c.name, news_category_path(c.url_name) }.join(', ')) %>
		</p>
		<% end %>
		<div id="spud_news_post_content">
			<%= raw @post.content_processed %>
		</div>
	</div>
<%end%>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
spud_blog-1.0.2 app/views/news/show.html.erb
spud_blog-1.0.1 app/views/news/show.html.erb