-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.njk
51 lines (46 loc) · 1.7 KB
/
index.njk
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
layout: layouts/home.njk
tags:
- nav
navtitle: Home
---
<div class="content-inner">
<h1 class="main-title">Последние публикации</h1>
{% set postsTotal = collections.posts.length - 10 %}
{% set totalRemainder = postsTotal % 10 %}
{% if postsTotal >= 10 and postsTotal <= 19 %}
{% set postsPlural = 'публикаций' %}
{% elif totalRemainder == 0 %}
{% set postsPlural = 'публикаций' %}
{% elif totalRemainder == 1 %}
{% set postsPlural = 'публикацию' %}
{% elif totalRemainder >= 2 and totalRemainder <= 4 %}
{% set postsPlural = 'публикации' %}
{% elif totalRemainder >= 5 and totalRemainder <= 9 %}
{% set postsPlural = 'публикаций' %}
{% endif %}
{% set postslist = collections.posts | head(-10) %}
{% include "postslistShort.njk" %}
<p class="main-more">Ещё {{postsTotal}} {{postsPlural}} можно найти в <a class="link" href="{{ '/posts/' | url }}">архиве</a></p>
<div class="sponsor-title">
Генеральный спонсор:<br/>
</div>
<a href="https://zarplata.ru/">
<img
width="250"
height="50"
class="zarplata-logo_theme_main"
src="/img/zarplata_ru.svg" alt="Логотип Зарплата.ру"
/>
<img
width="250"
height="50"
class="zarplata-logo_theme_dark"
src="/img/zarplata_ru_for_dark_theme.svg" alt="Логотип Зарплата.ру"
/>
</a>
<div class="sponsor-title">
Серебряный спонсор:<br/>
</div>
<a href="https://twitter.com/dcversus">Василиса Версус</a>
</div>