{% extends "base.html" %} {% block title %} OurTieba {% endblock %} {% block page_content %}
{% for news in data['news'][1:] %}

{{ news['title'] }}

{{ news['abstract'] }}

Continue reading
{% endfor %}

Hot Boards

{% for board in data['boards'] %}
{{ board['name'] }}
Hot: {{ board['hot'] }}
Post count: {{ board['post_count'] }}

{{ board['summary'] }}

{% if not loop.last %}
{% endif %} {% endfor %} {% endblock %}