					{% if route.action == "view" and post.status == "draft" %}
					<div class="notice" onClick="$$(this).fadeOut('fast')">
						${ "This post is a draft." | translate }<span class="sub">${ "(click to hide)" | translate }</span>
					</div>
					{% endif %}
					<div class="post $post.feather{% if post.pinned %} pinned{% endif %}" id="post_$post.id">
						{% if post.pinned %}<span class="pinned_text">${ "pinned" | translate }</span>{% endif %}
						{% include "content/feathers/" ~ post.feather ~ ".twig" %}
						{% if route.action == "view" %}
						$post.paginated.next_link
						$post.paginated.prev_link
						{% endif %}
						<div class="clear"></div>
						<span class="info">
							<strong><a href="$post.url">${ post.created_at | strftime("%B %d @ %I:%M %p") }</a></strong>
							{% if enabled_modules.categorize and post.category.id != 0 %}
							<em>|</em>
							<a href="$post.category.url" rel="tag">$post.category.name</a>
							{% endif %}
							{% if enabled_modules.comments %}
							<em>|</em>
							<a href="$post.url#comments">${ "%s Comment" | translate_plural("%s Comments", post.comment_count) | format(post.comment_count) }</a>
							{% endif %}
							{% if post.tags.linked | length > 0 %}
							<em>|</em>
							Tags: ${ post.tags.linked | join }
							{% endif %}
							{% if site.enable_trackbacking %}
							<em>|</em>
							<a href="$post.trackback_url">${ "Trackback" | translate }</a>
							{% endif %}
							${ post.edit_link("Edit" | translate, "<em>|</em> ") }
							${ post.delete_link("Delete" | translate, "<em>|</em> ") }
						</span>
						<div class="clear"></div>
						{% if route.action != "view" and not loop.last %}
						<br />
						{% endif %}
					</div>