w5isp.com/templates/projects.html
Graham McIntire f57d3d945d
Initial site setup with Zola and zolanight theme
- Zola static site with zolanight theme
- Blog section with sample posts
- Projects section for listing external projects
- Custom index template showing latest post and recent posts list
2026-02-17 09:51:14 -06:00

25 lines
613 B
HTML

{% extends "base.html" %}
{% block title %}{{ section.title }} - {{ config.title }}{% endblock title %}
{% block content %}
<h1>{{ section.title }}</h1>
<div>
{{ section.content | safe }}
</div>
<ul class="projects">
{% for page in section.pages %}
<li>
<article>
<h2><a href="{{ page.permalink }}">{{ page.title }}</a></h2>
{% if page.description %}
<p>{{ page.description }}</p>
{% endif %}
{% if page.extra.url %}
<p><a href="{{ page.extra.url }}">{{ page.extra.url }}</a></p>
{% endif %}
</article>
</li>
{% endfor %}
</ul>
{% endblock content %}