Обновить конфигурацию Jekyll: изменить настройки сайта, добавить навигацию и страницу заметок

This commit is contained in:
ada
2025-08-18 15:39:50 +03:00
parent c7d463b348
commit 9999a52d2f
3 changed files with 84 additions and 11 deletions
+12
View File
@@ -0,0 +1,12 @@
---
layout: single
title: Заметки
permalink: /notes/
---
<ul>
{% assign sorted = site.notes | sort: "title" %}
{% for note in sorted %}
<li><a href="{{ note.url | relative_url }}">{{ note.title }}</a></li>
{% endfor %}
</ul>