user_posts.twig 813 B

123456789101112131415161718192021222324252627282930313233
  1. {% include 'header.twig' %}
  2. <div class="user_activity">
  3. {% for post in posts %}
  4. <div>
  5. {# Post title #}
  6. {% if post.link|length > 0 %}
  7. <a href="{{ post.link }}">
  8. {{ post.title }}
  9. </a>
  10. {% else %}
  11. <a href="../post/{{ post.hashId }}">
  12. {{ post.title }}
  13. </a>
  14. {% endif %}
  15. {# Post info #}
  16. <div class="info">
  17. {{ post.vote }} votes,
  18. <em>{{ post.created|ago }}</em>
  19. <a href="../post/{{ post.hashId }}">{{ post.commentsCount }} comments</a>
  20. </div>
  21. </div>
  22. {% endfor %}
  23. </div>
  24. {% include 'footer.twig' %}