{# RENAME THIS FILE TO `custom_index.html`#} {% extends "base.html" %} {# this head block is not needed if CSS is moved to custom.css #} {% block head %} {{ super() }} {% endblock %} {% block main %}
{% if hero is defined %}
{{hero}}
{% endif %} {%- for content in content_list %}

{{ content.title | capitalize }}

{% if content.description %} {{ content.description | replace(from='"', to="") | truncate(length=250, end=" ...") }} {% else %} {{ content.html | striptags | trim_start_matches(pat=content.title) | truncate(length=250, end=" ...") }} {%- endif %} read more →

{% if content.date -%} {%- endif %}
{%- endfor %} {% if total_pages is defined and total_pages > 1 %} {% include "pagination.html" ignore missing %} {% endif %}
{% if site.authors %} {% for username, author in site.authors %}
{{author.name}}
{{author.name}}

{{author.bio}}

    {% for link in author.links %}
  • {{link.0}}
  • {% endfor %}
{% break %} {# only show the first author #} {% endfor %} {% endif %}
Authors
    {% for name, _ in group(kind="author") %}
  • @{{name}}
  • {% endfor %}
Archive
    {% for year, _ in group(kind="archive") %}
  • {{year}}
  • {% endfor %}
Streams
    {% for stream, _ in group(kind="stream") %}
  • {{stream}}
  • {% endfor %}
{% endblock %}