5d1d04c52c
2. Added a page layout and improved html on post layout. 3. Improved flexibility of stylesheets for different layout types. 4. Collapsing sidebar now moves it to the bottom of the page and floats content into columns. 5. Improved sharing settings, added Google plus one.
11 lines
243 B
HTML
11 lines
243 B
HTML
<section>
|
|
<h1>Recent Posts</h1>
|
|
<ul id="recent_posts">
|
|
{% for post in site.posts limit: site.recent_posts %}
|
|
<li class="post">
|
|
<a href="{{ post.url }}">{{ post.title }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|