Sha256: 58a3ec7ca130e67f307f9139ba9336f54c74548500ee08e751eb051812cdd8f4

Contents?: true

Size: 1.17 KB

Versions: 2

Compression:

Stored size: 1.17 KB

Contents

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

<% content_for :head do %>
	<%= spud_blog_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 ['blog/show', @post] do%>
	<div class="spud_blog_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_blog_post_categories">
			Filed under
			<%= raw(@post.categories.collect{ |c| link_to c.name, blog_category_path(c.url_name) }.join(', ')) %>
		</p>
		<% end %>
		<div id="spud_blog_post_content">
			<%= raw @post.content_processed %>
		</div>
	</div>

	<% if @post.comments_enabled %>
		<div class="spud_blog_post_comment">
			<h5>Post a Comment:</h5>
			<%= render 'comment_form' %>
		</div>
		<ul id="spud_blog_post_comments">
			<%= render :partial => 'comment', :collection => @post.visible_comments %>
		</ul>
	<% end %>
<%end%>

Version data entries

2 entries across 2 versions & 1 rubygems

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