You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 regels
421 B

  1. {% block title %} Blog Writers {% endblock %}
  2. {% block content %}
  3. <div class="writers-content">
  4. {% if writers_introduction %}
  5. <p>{{ writers_introduction }}</p>
  6. {% endif %}
  7. {% for blogger_info in bloggers %}
  8. {% include "templates/includes/blogger.html" %}
  9. {% if not loop.last %}<hr>{% endif %}
  10. {% endfor %}
  11. </div>
  12. {% endblock %}
  13. {% block footer %}{% include "templates/includes/blog_footer.html" %}{% endblock %}