proxadmin/app/templates/news/latest.html

11 lines
299 B
HTML
Raw Normal View History

2017-05-25 01:54:33 -04:00
{% block page_content %}
2017-11-05 15:20:39 -05:00
<h4>News</h4>
2017-05-25 01:54:33 -04:00
{% for item in result %}
2017-11-05 15:20:39 -05:00
<p>
<a target="_blank" href="{{ item['link'] }}">{{ item['message'] }}</a>
<span class="tweet_day">{{ item['created_time'] | fbtime }}</span>
</p>
2017-06-11 22:12:27 -04:00
{% endfor %}
2017-11-05 15:20:39 -05:00
<a href="/news/all">>>></a>
2017-05-25 01:54:33 -04:00
{% endblock %}