17 lines
322 B
HTML
17 lines
322 B
HTML
---
|
|
layout: default
|
|
title: Home
|
|
---
|
|
|
|
This default index page is usually used to display the list of posts, or briefly explain the product.
|
|
|
|
I feel that it should not be indexed.
|
|
|
|
{% for post in paginator.posts %}
|
|
<a href="{{ site.baseurl }}{{ post.url }}">
|
|
{{ post.title }}
|
|
</a>
|
|
{{ post.content }}
|
|
{% endfor %}
|
|
|