Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

11 řádky
304 B

  1. {% if posts %}
  2. {% for post in posts %}
  3. {% include "templates/includes/inline_post.html" %}
  4. {% endfor %}
  5. {% else %}
  6. {% if limit_start %}
  7. <div class="no-posts alert alert-info">No more posts.</div>
  8. {% else %}
  9. <div class="no-posts alert alert-info">Nothing posted yet.</div>
  10. {% endif %}
  11. {% endif %}