aboutsummaryrefslogtreecommitdiff
path: root/zola-static/templates/project-list.html
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2025-12-22 13:34:31 -0500
committerJack Jamison <jackqjamison@gmail.com>2025-12-22 13:34:31 -0500
commit2281bc2514099b41fd471212a0a8e91955b49f02 (patch)
tree282c4ef040e50c5956e9220b1c641312b8ac76e0 /zola-static/templates/project-list.html
parentbd6bc98539d7d256b372fe393a4a040724ac2544 (diff)
big improvements and project images
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 %}