Recently Updated Standard Section

    This is a list with the most recently updated/created questions

    Updated at April 27th, 2025

    The Recently Updated Section is very important, as it lists not only new articles, but also articles that had been modified.

    This is how you can display a list of the 10 last recently updated articles:

    {% if recent_updates.size > 0 %}
    <h2>Recently Updated Articles</h2>
    <ul id="recently_updated">
      {% for question in recent_updates | limit: 10 %}
        <li class="article_item">
          <a href="{{ question.url }}">{{ question.name }}</a>
        </li>
      {% endfor %}
    </ul>
    {% endif %}