-
Notifications
You must be signed in to change notification settings - Fork 1
/
books.html
25 lines (25 loc) · 1.27 KB
/
books.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
layout: base
sitemap: false
title: По книгам
description: Архив записок, сгруппированный по книгам Библии
permalink: "/books"
---
<div class="home">
<h1>
{{- page.title -}}
</h1>
<div class="posts" style="column-width:12em;">
{%- for category in site.categories %}
{%- if category[0] != "ВЗ" and category[0] != "НЗ" %}
<div class="post">
<h3>
<a href="{{ category[0] | prepend: "/" | relative_url }}" class="post-link">
{{- category[0] | replace_first: '_', ' ' | replace_first: '1П', '1-я П' | replace_first: '1Ц', '1-я Ц' | replace_first: '1Т', '1-е Т' | replace_first: '1Ф', '1-е Ф' | replace_first: '1И', '1-е И' | replace_first: '1К', '1-е К' | replace_first: '2К', '2-е К' | replace_first: '2И', '2-е И' | replace_first: '2Т', '2-е Т' | replace_first: '2Ф', '2-е Ф' | replace_first: '3И', '3-е И' | replace_first: '2П', '2-я П' | replace_first: '2Ц', '2-я Ц' | replace_first: '3Ц', '3-я Ц' | replace_first: '4Ц', '4-я Ц' -}}
</a>
</h3>
</div>
{%- endif %}
{%- endfor %}
</div>
</div>