{% extends "templates/one-column.html" %} {% block title %}Ubuntu Blog{% endblock %} {% block extra_metatags %} {% endblock %} {% block content%} {% if current_page and current_page == 1 and featured_articles %} {% include "blog/featured-articles.html" %} {% endif %}
{% with topic="" %}{% include "blog/filters.html" %}{% endwith %}
{% for article in articles %} {% if loop.index in [1,2] %} {% with summary_visible=True %}{% include "blog/blog-card.html" %}{% endwith %} {% elif loop.index == 3 %}
{% include 'blog/newsletter-form.html' %}
{% include 'blog/blog-card.html' %} {% elif (loop.index +1) % 3 == 0 and loop.index > 3 %} {% include 'blog/blog-card.html' %}
{% else %} {% include 'blog/blog-card.html' %} {% endif %} {% endfor %}
{% if current_page and current_page == 1 and upcoming %}

Events and webinars

{% for article in upcoming %} {% include 'blog/blog-card-upcoming.html' %} {% endfor %}

See more ›

{% endif %}
{% with %} {% set total_pages = total_pages %} {% set current_page = current_page %} {% include "shared/_pagination.html" %} {% endwith %}
{% endblock content %}