{% extends "base.html" %} {% block content %}

{{ section.title }}

{{ section.description }}


{% set posts = get_section(path="blog/_index.md") -%} {% set colors = ["blue", "indigo", "purple", "pink", "red", "orange", "yellow", "green", "teal", "cyan"] -%} {% set colorsLength = colors | length -%} {% for page in posts.pages | slice(end=10) %}
{% include "partials/post-summary.html" %}
{% set colorIndex = loop.index0 % colorsLength %} {% set color = colors[colorIndex] %}
{% else %}

Sorry, we don't have news to share right now.

{% endfor %} {% endblock %}