--- ### ALL PAGES ### layout: themes/[ site.theme.id ]/frontend/core/cover ### PAGE CONFIG ### # Hero Section hero: headline: "{{ site.brand.name }}" headline_accent: "updates" subheadline: "Release notes and version history for {{ site.brand.name }}" # Updates Section updates: empty_message: "No updates available yet" view_details: "View details" latest_badge: "Latest" ---

{{ page.resolved.hero.headline }} {{ page.resolved.hero.headline_accent }}

{% iftruthy page.resolved.hero.subheadline %}

{{ page.resolved.hero.subheadline }}

{% endiftruthy %}
{% if site.updates %} {% assign updates = site.updates | sort: 'update.date' | reverse %} {% else %} {% assign updates = nil %} {% endif %} {% if updates and updates.size > 0 %}
{% for item in updates %} {% if item.draft and jekyll.environment == 'production' %} {% continue %} {% endif %}
{% uj_icon "rocket", "text-primary fs-5" %}

Version {{ item.update.version }}

{% iftruthy item.update.title %}

{{ item.update.title }}

{% endiftruthy %}
{% if forloop.first %} {{ page.resolved.updates.latest_badge }} {% endif %} {{ item.update.date | date: "%b %d, %Y" }}
{% iftruthy item.update.summary %}

{{ item.update.summary }}

{% endiftruthy %} {% iftruthy item.update.highlights %}
{% for highlight in item.update.highlights %} {% uj_icon highlight.icon, "me-1" %} {{ highlight.text }} {% endfor %}
{% endiftruthy %}
{% endfor %}
{% else %}
{% uj_icon "box-open", "fs-1 mb-3 opacity-50" %}

{{ page.resolved.updates.empty_message }}

{% endif %}
{{ content | uj_content_format }}