proxadmin/app/templates/news/facebook.html

15 lines
323 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 %}
<li><a target="_blank" href="{{ item['link'] }}">{{ item['message'] }}</a> {{ item['created_time'] }}<br />
</li><br />
{% endfor %}
</ul>
</div>
{% endblock %}