diff options
Diffstat (limited to '_layouts/home.html')
-rw-r--r-- | _layouts/home.html | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/_layouts/home.html b/_layouts/home.html deleted file mode 100644 index 4a24765..0000000 --- a/_layouts/home.html +++ /dev/null @@ -1,24 +0,0 @@ ---- -layout: default ---- - -{%- if site.posts.size > 0 -%} -<ul id="posts-list"> - {%- for post in site.posts -%} - {%- if post.hide -%}{%- continue -%}{%- endif -%} - <li> - <h2> - <a href="{{ post.url | relative_url }}"> - {{ post.title | escape }} - </a> - </h2> - <span>{{ post.date | date: site.date_format }}</span> - {%- if post.updated %} - <span>(Updated {{ post.updated | date: site.date_format }})</span> - {% endif -%} - <p>{{ post.description }}</p> - </li> - {%- endfor -%} -</ul> - -{%- endif -%} |