{# notificationList.twig #}

{% extends "/skeleton/base.twig" %}

{% block content %}
<div class="container my-5">
    <div class="bg-secondary text-white mb-4 p-2">
      <h1>{{ page_title }}</h1>
    </div>

    <!-- News Table -->
    <table class="table align-middle">
      <tbody>
        {% for notification in notificationList %}
          <tr>
            <td style="width: 10%;" class="text-primary">{{ notification.date }}</td>
            <td style="width: 90%;"><a class="text-black" href="{{lang}}/notifications/{{ notification.index }}">{{ notification.title }}</a></td>
          </tr>
        {% endfor %}
      </tbody>
    </table>
  </div>
{% endblock %}