proxadmin/app/templates/news/latest.html

8 lines
272 B
HTML
Raw Normal View History

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