blob: 0a73593fb23a549714e16593d9ca877eeadb5a46 (
plain)
| 1
2
3
4
5
6
7
8
 | <div class="widget">
	<h3>Recent Posts</h3>
	<ul>
		{% for post in site.posts limit: site.recent_posts %}
			<li><a href="{{ root_url }}{{ post.url }}">{{ post.title }}</a></li>
		{% endfor %}
	</ul>
</div>
 |