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.
|
- {% block title %} Blog Writers {% endblock %}
-
- {% block content %}
- <div class="writers-content">
- {% if writers_introduction %}
- <p>{{ writers_introduction }}</p>
- {% endif %}
- {% for blogger_info in bloggers %}
- {% include "templates/includes/blogger.html" %}
- {% if not loop.last %}<hr>{% endif %}
- {% endfor %}
- </div>
- {% endblock %}
-
- {% block footer %}{% include "templates/includes/blog_footer.html" %}{% endblock %}
|