{% extends "base.html" %}

{% block page_content %}
<h1>News</h1>
  <div class="row">
    <ul id="navigation">
    {% for item in result %}
       <li><a target="_blank" href="{{ item['link'] }}">{{ item['message'] }}</a></li>
       <i>{{ item['created_time'] | fbtime }}</i>
    <br /><br />
    {% endfor %}
    </ul>
  </div>

{% endblock %}