aboutsummaryrefslogtreecommitdiff
path: root/zola-static/templates/project-list.html
diff options
context:
space:
mode:
Diffstat (limited to 'zola-static/templates/project-list.html')
-rw-r--r--zola-static/templates/project-list.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/zola-static/templates/project-list.html b/zola-static/templates/project-list.html
index eb66dad..50a9677 100644
--- a/zola-static/templates/project-list.html
+++ b/zola-static/templates/project-list.html
@@ -5,11 +5,11 @@
<h1 class="title">
{{ section.title }}
</h1>
-<ul>
<!-- If you are using pagination, section.pages will be empty.
You need to use the paginator object -->
{% for page in section.pages %}
- <li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
+ <div class="index-section project-section">
+ <a href="{{ page.permalink | safe }}"><h2>{{ page.title }}</h2><img src="/images/projects/{{ page.extra.cover }}" alt="{{ page.title }}"></a>
+ </div>
{% endfor %}
-</ul>
{% endblock content %}