You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
436 B
14 lines
436 B
10 years ago
|
<section class="wrapper style1 container special">
|
||
|
<br/>
|
||
|
<h2>Most Recents</h2>
|
||
|
<div class="row">
|
||
|
<ul>
|
||
|
{% for article in articles[:3] %}
|
||
|
<li>
|
||
|
<a href="{{ SITEURL }}/{{ article.url }}" rel='bookmark'>{{ article.title }}</a>
|
||
|
{{ article.content[:196]|stringtags_and_img }} <span class="muted">{{ article.locale_date }}</span>
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
</div>
|
||
|
</section>
|