rfcs/docs/index.md
Arseny Kapoulkine 7be809109c Add site config and index
Also fix string interpolation RFC to be compatible with Jekyll
2023-10-30 07:52:49 -07:00

13 lines
277 B
Markdown

# RFCs
{% assign sortedPages = site.pages | sort: 'title' %}
<ul>
{% for page in sortedPages %}
{% assign ext = page.name | split:'.' | last %}
{% if ext == 'md' and page.name != 'index.md' %}
<li>
<a href="{{ page.url }}">{{ page.title }}</a>
</li>
{% endif %}
{% endfor %}