Sha256: bbabcae7f571463b5f476724760ceb859d824edcebc747b9995780e38d665cfd

Contents?: true

Size: 1.25 KB

Versions: 4

Compression:

Stored size: 1.25 KB

Contents

<script type="text/javascript">
	$(document).ready(function()
	{
		new CommentsHandler('div.discussion',
		                    'div.comment',
		                    'form.comment_form',
		                    'form.main_comment_form',
		                    'button.cancel_comment',
		                    'a.reply',
		                    'a.edit',
		                    'a.delete',
		                    'input.subscription_subscribe',
		                    'div.subscription_email')
	});
</script>

<div class = "post">
	<h1 class = "post_title"><%= @post.title %></h1>

	<div class = "post_body show">
		<%= raw @post.body %>
	</div>

	<div class = "post_information">
		<% if @post.published? %>
			Written <%= timeago_tag @post.published_at, format: "%B %d, %Y" %> by
		<% else %>
			Draft last updated <%= timeago_tag @post.updated_at, format: "%B %d, %Y" %> by
		<% end %>
		<%= @post.author.send(Proclaim.author_name_method) %>
	</div>

	<h2>Comments</h2>

	<div id="comments">
		<%= comments_tree_for @post.comments.hash_tree %>
	</div>

	<% commentTemplate = @post.comments.build %>
	<%= render partial: "proclaim/comments/form",
		        locals: {
		           comment: commentTemplate,
		           target: "#comments",
		           main: true
		        } %>
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
proclaim-0.1.3 app/views/proclaim/posts/show.html.erb
proclaim-0.1.2 app/views/proclaim/posts/show.html.erb
proclaim-0.1.1 app/views/proclaim/posts/show.html.erb
proclaim-0.1.0 app/views/proclaim/posts/show.html.erb