Delete tutorials/tutorials.md

This commit is contained in:
Tenkuma 2025-11-16 11:18:15 -03:00 committed by GitHub
commit 361e643be6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,19 +0,0 @@
---
permalink: /tutorials/
---
## Listing Tutorials
<ul>
{% for p in site.pages %}
{% assign path = p.path | default: "" %}
{% if path != "" and path contains "tutorials/" %}
{% unless path == "tutorials/index.md" or path == "tutorials/README.md" or path == "tutorials.md" %}
<li>
<a href="{{ p.url | relative_url }}">{{ p.title | default: path | replace: "tutorials/", "" }}</a>
{% if p.date %} — <time datetime="{{ p.date | date_to_xmlschema }}">{{ p.date | date: "%Y-%m-%d" }}</time>{% endif %}
</li>
{% endunless %}
{% endif %}
{% endfor %}
</ul>