tweet-thread-children.html 223 B

12345678910111213
  1. {% if children %}
  2. <div>
  3. <ul class="tweets">
  4. {% for thread_item in children %}
  5. <li style="border: 1px solid black">
  6. {% include "partial/tweet-thread-item.html" %}
  7. </li>
  8. {% endfor %}
  9. </ul>
  10. </div>
  11. {% endif %}