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