Sha256: 7767e2dec99fe4f205a9695d8d04c84859872d3987ada4b8cbfabeba1cfc21dd

Contents?: true

Size: 1.09 KB

Versions: 16

Compression:

Stored size: 1.09 KB

Contents

<% content_for :title do %>
	<%= @post.title %> | <%= Spud::Core.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 %>

<div class="spud_blog_post">
	<h3><%= @post.title %></h3>
	<h4>Posted by <%= @post.author.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 %>
	</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.comments %>
	</ul>
<% end %>

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
spud_blog-0.8.14 app/views/blog/show.html.erb
spud_blog-0.8.13 app/views/blog/show.html.erb
spud_blog-0.8.12 app/views/blog/show.html.erb
spud_blog-0.8.11 app/views/blog/show.html.erb
spud_blog-0.8.8 app/views/blog/show.html.erb
spud_blog-0.8.7 app/views/blog/show.html.erb
spud_blog-0.8.6 app/views/blog/show.html.erb
spud_blog-0.8.5 app/views/blog/show.html.erb
spud_blog-0.8.4 app/views/blog/show.html.erb
spud_blog-0.8.3 app/views/blog/show.html.erb
spud_blog-0.8.2 app/views/blog/show.html.erb
spud_blog-0.8.1 app/views/blog/show.html.erb
spud_blog-0.8.0 app/views/blog/show.html.erb
spud_blog-0.7.5 app/views/blog/show.html.erb
spud_blog-0.7.4 app/views/blog/show.html.erb
spud_blog-0.7.2 app/views/blog/show.html.erb