diff options
author | garhve <git@garhve.com> | 2023-02-14 18:29:13 +0800 |
---|---|---|
committer | garhve <git@garhve.com> | 2023-02-14 18:29:13 +0800 |
commit | 734f042c9d99e0110d5e4cf8f2994a5ce27385d1 (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /themes/emily_zola_theme/templates/index.html | |
parent | 92e08c404fa53f304dec7490c4acb4b45dd0d7df (diff) |
delete zola
Diffstat (limited to 'themes/emily_zola_theme/templates/index.html')
-rw-r--r-- | themes/emily_zola_theme/templates/index.html | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/themes/emily_zola_theme/templates/index.html b/themes/emily_zola_theme/templates/index.html deleted file mode 100644 index 795b7e1..0000000 --- a/themes/emily_zola_theme/templates/index.html +++ /dev/null @@ -1,30 +0,0 @@ -{% extends "base.html" %} - -{% block content %} - -{% set section = get_section(path="post/_index.md") %} -{% for page in section.pages %} - {% if loop.index0 == config.extra.indexposts %}{% break %}{% endif %} - <p> - <div class="date"> - {{ page.date }} - </div> - <div class="title"> - <a href="{{ page.permalink | safe }}">{{ page.title }}</a> - </div> - <div class="taxonomies_index"> - {% if page.taxonomies.categories %} - {% for category in page.taxonomies.categories %} -  <a href="{{ get_taxonomy_url(kind="categories", name=category) | safe }}">/{{ category }}</a> - {% endfor %} - {% endif %} - {% if page.taxonomies.tags %} - {% for tag in page.taxonomies.tags %} -  <a href="{{ get_taxonomy_url(kind="tags", name=tag) | safe }}">#{{ tag }}</a> - {% endfor %} - {% endif %} - </div> - </p> -{% endfor %} - -{% endblock content %} |