proxadmin/app/templates/news/latest.html

8 lines
272 B
HTML
Raw Normal View History

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