您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

19 行
557 B

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