aboutsummaryrefslogtreecommitdiff
path: root/_layouts/index.html
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--_layouts/index.html19
1 files changed, 0 insertions, 19 deletions
diff --git a/_layouts/index.html b/_layouts/index.html
deleted file mode 100644
index 3b0f281..0000000
--- a/_layouts/index.html
+++ /dev/null
@@ -1,19 +0,0 @@
----
-layout: default
----
-<h2>
- {{ site.t.recent_posts[page.lang] }}
- <a href="{% link {{ site.t.feed.url.blog[page.lang] }} %}">
- <img class="simple-icon" src="/images/atom.svg" alt="{{ site.t.alt.atom[page.lang] }}" />
- </a>
-</h2>
-{% assign lposts=site.posts | where:"lang", page.lang | sort: 'date' | reverse %}
-{% if lposts.size > 0 %}
- <ul>
- {%- for post in lposts -%}
- <li>
- <a href="{{ post.url }}">{{ post.title | escape }}</a> - {% include i18n-date.html date=post.date %}
- </li>
- {%- endfor -%}
- </ul>
-{% endif %}