You are here

photos-comment-count.html.twig in Album Photos 6.0.x

{% if comcount %}
  {% if post_comments %}
    <a href="{{ login_href }}">Login</a> to post comments
  {% else %}
    <a href="{{ url }}#comment-form">Add new comment</a>
  {% endif %}
{% else %}
  <a href="{{ url }}#comments">
    {% trans %}
      {{ comcount }} comment
    {% plural comcount %}
      {{ comcount }} comments
    {% endtrans %}
  </a>
{% endif %}

File

templates/photos-comment-count.html.twig
View source
  1. {% if comcount %}
  2. {% if post_comments %}
  3. <a href="{{ login_href }}">Login</a> to post comments
  4. {% else %}
  5. <a href="{{ url }}#comment-form">Add new comment</a>
  6. {% endif %}
  7. {% else %}
  8. <a href="{{ url }}#comments">
  9. {% trans %}
  10. {{ comcount }} comment
  11. {% plural comcount %}
  12. {{ comcount }} comments
  13. {% endtrans %}
  14. </a>
  15. {% endif %}