posts.html.twig 352 B

1234567891011
  1. {% import 'studentfollowup/view/post.html.twig' as template %}
  2. <h2 class="text-center">{{ care_title }} - {{ student_info.complete_name }}</h2>
  3. {% if posts %}
  4. {% for post in posts %}
  5. {{ template.post_template('simple', post, information_icon, post_url, current_url) }}
  6. {% endfor %}
  7. <div>
  8. {{ pagination }}
  9. </div>
  10. {% endif %}