generated from 11ty/eleventy-base-blog
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.njk
53 lines (44 loc) · 1.23 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
52
53
---
layout: layouts/home.njk
eleventyNavigation:
key: Главная
order: 1
---
<h1>Каталог советов</h1>
<div class="catalog">
<section>
<h2>Установка Node.js</h2>
{% set tipsTag = 'setup' %}
{% include "tipslist.njk" %}
</section>
<section>
<h2>Как устроено</h2>
<p></p>
{% set tipsTag = 'details' %}
{% include "tipslist.njk" %}
</section>
<section>
<h2>Хорошие модули</h2>
<p>В npm много разных модулей, помогаем выбрать хорошие:</p>
{% set tipsTag = 'modules' %}
{% include "tipslist.njk" %}
</section>
<section>
<h2>Практики программирования</h2>
{% set tipsTag = 'programming' %}
{% include "tipslist.njk" %}
</section>
<section>
<h2>Продакшен</h2>
<p>Как доставить приложение и как его поднять в продакшене:</p>
{% set tipsTag = 'production' %}
{% include "tipslist.njk" %}
</section>
<section>
<h2>Мета</h2>
<p>Заметки про сайт Нодскула:</p>
{% set tipsTag = 'meta' %}
{% include "tipslist.njk" %}
</section>
</div>
<p>Также см. <a href="{{ '/posts/' | url }}">архив</a>.</p>