Skip to content

Commit

Permalink
Исправляет разметку списка для советов
Browse files Browse the repository at this point in the history
  • Loading branch information
vitya-ne committed Aug 30, 2024
1 parent 728b3b1 commit e0a0eb3
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions src/views/person.njk
Original file line number Diff line number Diff line change
Expand Up @@ -204,15 +204,17 @@
{{ articleIndexesMap[category].data.name }}
</h2>
<h3 class="articles-group__sub-title font-theme font-theme--code">{{ practicesPersonRole }}</h3>
{% for practice in practicesIndex[category] | sort %}
<ul class="articles-group__list base-list">
<li>
<a class="articles-group__link link" href="/{{ category }}/{{ practice.fileSlug }}/#na-praktike">
{{ practice.data.title | descriptionMarkdown | safe }}
</a>
</li>
</ul>
{% endfor %}
<ul class="articles-group__list base-list">
{% for practice in practicesIndex[category] | sort %}
<ul class="articles-group__list base-list">
<li>
<a class="articles-group__link link" href="/{{ category }}/{{ practice.fileSlug }}/#na-praktike">
{{ practice.data.title | descriptionMarkdown | safe }}
</a>
</li>
</ul>
{% endfor %}
</ul>
</section>
{% endfor %}
{% endif %}
Expand Down

0 comments on commit e0a0eb3

Please sign in to comment.