mirror of
https://github.com/ada-dmitry/ada-dmitry.github.io.git
synced 2026-09-24 09:20:40 +00:00
13 lines
242 B
Markdown
13 lines
242 B
Markdown
---
|
|
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>
|