articles
This commit is contained in:
19
articles.html
Normal file
19
articles.html
Normal file
@@ -0,0 +1,19 @@
|
||||
---
|
||||
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>
|
||||
Reference in New Issue
Block a user