Files
website-hadow.fr/articles.html
T

22 lines
558 B
HTML
Raw Normal View History

2025-12-14 19:58:23 +01:00
---
layout: default
title: Articles
---
<h1>Latest Articles</h1>
<ul>
{% for file in site.static_files %}
{% if file.path contains '/articles/' and file.extname == '.pdf' %}
<li>
<a href="{{ file.path | relative_url }}">
<span style="font-size: 1.2em;">
{{ file.name | remove: '.pdf' | replace: '_', ' ' }}
</span>
</a>
</li>
{% endif %}
{% endfor %}
</ul>
2026-01-24 13:58:21 +01:00
<small>Copyright (c) 2026 Sam Hadow Verbatim copying and redistribution of this entire page are permitted provided this notice is preserved.</small>