                    <div class="post $post.feather{% if post.pinned %} pinned{% endif %}" id="post_$post.id">
                        {% if post.pinned %}<span>!</span>{% endif %}
                        {% block content %}{% endblock %}
                        {% if route.action == "view" and post.paginated and post.paginated.pages > 1 %}
                        <div class="clear"></div>
                        $post.paginated.prev_link
                        $post.paginated.next_link
                        <span class="pages">${ "Page %d of %d" | translate | format(post.paginated.page, post.paginated.pages) }</span>
                        {% endif %}
                        <div class="clear"></div>
                        <p>&nbsp;</p>
                        <span class="info">
                            <a href="$post.url">${ post.created_at | strftime("%B %e, %Y" | translate) }</a>
                            <br />
                            {% if enabled_modules.categorize and post.category.id != 0 %}
                            <a href="$post.category.url" rel="tag">$post.category.name</a>
                            <br />
                            {% endif %}
                            {% if post.linked_tags | length > 0 %}
                            ${ "Tags" | translate }: ${ post.linked_tags | join(", ") }
                            <br />
                            {% endif %}
                            {% if enabled_modules.comments %}
                            <a href="$post.url#comments">${ "%s Comment" | translate_plural("%s Comments", post.comment_count) | format(post.comment_count) }</a>
                            {% endif %}
                        {% if post.editable or post.deletable %}
                            <br />
                            <br />
                            $post.edit_link
                            ${ post.delete_link("Delete" | translate, " &nbsp; ") }
                        {% endif %}
                              </span>
                        <div class="clear"></div>
                    </div>
