mirror of
https://github.com/adulau/brouilleursdeblanc.git
synced 2024-11-07 12:06:26 +00:00
a9ab8b7bf7
- Fixes #88 - Replace overlay with dedicated search page (see /search/index.md) - Replace simpleJekyllSearch.js - Include pages in search.json index
12 lines
417 B
Markdown
12 lines
417 B
Markdown
---
|
|
layout: page
|
|
title: Sample Articles
|
|
excerpt: "An archive of articles sorted by date."
|
|
search_omit: true
|
|
---
|
|
|
|
<ul class="post-list">
|
|
{% for post in site.categories.articles %}
|
|
<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>
|