KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

post.twig 1.1KB

9 years ago
123456789101112131415161718
  1. <div class="post $post.feather" id="post_$post.id">
  2. {% block content %}{% endblock %}
  3. {% if route.action == "view" and post.paginated and post.paginated.pages > 1 %}
  4. <div class="clear"></div>
  5. $post.paginated.prev_link
  6. $post.paginated.next_link
  7. <span class="pages">${ "Page %d of %d" | translate | format(post.paginated.page, post.paginated.pages) }</span>
  8. {% endif %}
  9. <div class="clear"></div>
  10. <p class="info">
  11. {% if enabled_modules.comments %}
  12. <a href="$post.url#comments">${ "See %s Comment" | translate_plural("See %s Comments", post.comment_count) | format(post.comment_count) }</a>
  13. {% endif %}
  14. </p>
  15. </div>
  16. {% if route.action != "view" %}
  17. <hr/>
  18. {% endif %}