mirror of
https://github.com/adulau/brouilleursdeblanc.git
synced 2024-11-07 12:06:26 +00:00
e711f8b839
- Cleanup _config.yml - Move navigation and author info to data files - Convert .less stylesheets to .scss - Update documentation - Include Octopress gem for new post/page creation
11 lines
No EOL
416 B
HTML
11 lines
No EOL
416 B
HTML
---
|
|
layout: page
|
|
title: Latest Posts
|
|
excerpt: "A simple and clean responsive Jekyll theme for words and photos."
|
|
---
|
|
|
|
<ul class="post-list">
|
|
{% for post in site.posts limit:10 %}
|
|
<li><article><a href="{{ site.url }}{{ post.url }}">{{ post.title }} <span class="entry-date"><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%B %d, %Y" }}</time></span></a></article></li>
|
|
{% endfor %}
|
|
</ul> |