{% if officialTopics.length > 0 %}
  <h3 id="official-topics">Official Topics</h3>

  <table>
    <thead>
      <tr>
        <th>Date</th>
        <th>Topic</th>
      </tr>
    </thead>
    <tbody>
      {% for topic in officialTopics %}
        <tr>
          <td>
            <time datetime="{{ topic.date.toISOString() }}" title="{{ topic.date.toUTCString() }}">
              {{ fecha.format(topic.date, 'YYYY-MM-DD') }}
            </time>
          </td>
          <td>
            <a href="{{ topic.url }}">{{ topic.title }}</a>
          </td>
        </tr>
      {% endfor %}
    </tbody>
  </table>
{% endif %}