proxadmin/app/templates/news/facebook.html

16 lines
346 B
HTML
Raw Normal View History

2017-05-25 01:54:33 -04:00
{% extends "base.html" %}
{% block page_content %}
<h1>News</h1>
<div class="row">
<ul id="navigation">
{% for item in result %}
2017-11-05 15:20:39 -05:00
<li><a target="_blank" href="{{ item['link'] }}">{{ item['message'] }}</a></li>
<i>{{ item['created_time'] | fbtime }}</i>
<br /><br />
2017-05-25 01:54:33 -04:00
{% endfor %}
</ul>
</div>
{% endblock %}