aboutsummaryrefslogtreecommitdiff
path: root/zola-static/templates/project-list.html
blob: c361e52ebf74d19393a660323268157431c5cef7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}

{% block content %}

<h1 class="title">
  {{ section.title }}
</h1>
  <!-- If you are using pagination, section.pages will be empty.
       You need to use the paginator object -->  
  {% for page in section.pages %}
  <div class="index-section project-section">
  <a href="{{ page.permalink | safe }}"><h2>{{ page.title }}</h2><img src="{{ page.path ~ 'cover.png' }}" alt="{{ page.title }}"></a>
  </div>
  {% endfor %}
{% endblock content %}