{{ header }}

<div class="inner-wrap pt-4">
      <div class="container">
          <div class="row">
              <div class="col-md-12 mb-3">
                  <h2>Downloads</h2>
              </div>
            
            {% if downloads %}
            	<table class="table">
				  <thead>
				    <tr>
				      <th scope="col">#</th>
				      <th scope="col">Title</th>
				      <th scope="col">Date</th>
				    </tr>
				  </thead>
				  <tbody>
				  	{% for key, download in downloads %}
				    <tr>
				      <th scope="row">{{key+1}}</th>
				      <td><a href="{{download.href}}" download>{{download.title}}</a></td>
				      <td>{{download.date}}</td>
				    </tr>
				    {% endfor %}
				  </tbody>
				</table>
            
            {% endif %}
          </div>
      </div>
  </div>

{{ footer }}