{% block page_content %}
    <h4>News</h4>
    {% for item in result %}
    <p>
    <a target="_blank" href="{{ item['link'] }}">{{ item['message'] }}</a>
    <span class="tweet_day">{{ item['created_time'] | fbtime }}</span>
    </p>
    {% endfor %}
    <a href="/news/all">>>></a>
{% endblock %}