forked from vodovorot-guides/vodovorot-guides.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (119 loc) · 4.8 KB
/
index.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
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
---
layout: default
---
<div class="home">
<div class="title">
<img src="{{ site.logo }}" />
<!-- <h1 class="title-heading">{{- site.description_long | escape -}}</h1> -->
<p class="site-title"><strong>{{- site.description | escape -}}</strong></p>
<p>{{- site.description_long | escape -}}</p>
<h2 class="post-list-heading">Об авторе:</h2>
<p>{{- site.about_author | markdownify -}}</p>
</div>
<div class="container guide-img-block">
<div class="row row-img">
<div class="col-sm guide-img">
<a href="/ele/intro.html"><img src="/assets/img/ele_g.jpg" class="rounded guide-pic" /></a>
</div>
<div class="col-sm guide-img">
<a href="/enh/intro.html"><img src="/assets/img/enh_g.jpg" class="rounded guide-pic" /></a>
</div>
<div class="col-sm guide-img">
<a href="/resto/intro.html"><img src="/assets/img/resto_g.jpg" class="rounded guide-pic" /></a>
</div>
</div>
</div>
{%- comment -%}
код для отображения самой первой новости
{%- if site.posts.size > 0 and paginator.previous_page == nil -%}
<ul class="post-list">
{%- assign post = paginator.posts | first -%}
<li>
{%- assign months = "января|февраля|марта|апреля|мая|июня|июля|августа|сентября|октября|ноября|декабря" | split: "|" -%}
{%- assign m = post.date | date: "%-m" | minus: 1 -%}
{%- assign day = post.date | date: "%-d" -%}
{%- assign month = months[m] -%}
{%- assign year = post.date | date: "%Y" -%}
<span class="post-meta">{{ day }} {{ month }}, {{ year }}</span>
<h3>
<a class="post-link" href="{{ post.url | relative_url }}">
{{ post.title | escape }}
</a>
</h3>
{%- if site.show_excerpts -%}
{{ post.excerpt }}
{%- if post.excerpt -%}
<a href="{{ post.url | relative_url }}">
Читать далее
</a>
{%- endif -%}
{%- endif -%}
</li>
</ul>
{%- endif -%}
{%- endcomment -%}
{%- if page.title -%}
<h1 class="page-heading">{{ page.title }}</h1>
{%- endif -%}
<h2 class="post-list-heading">Последние события:</h2>
<p class="last-news">
{%- for news in site.data.last_news -%}
{%- if news.link -%}
<a href="{{ news.link | relative_url }}">{{ news.title }}</a>
{%- else -%}
{{ news.title }}
{%- endif -%}
<span class="post-meta">{{ news.date }}</span><br />
{%- endfor -%}
</p>
{%- if site.posts.size > 0 -%}
<h2 class="post-list-heading">{{ page.list_title | default: "Новости" }}</h2>
<ul class="post-list">
<!-- adjusting the number of posts per page happens in _config.yml 'paginate: ' -->
{%- for post in paginator.posts -%}
{%- comment -%}
{%- if forloop.index == 1 and paginator.previous_page == nil -%}{%- continue -%}{%- endif -%}
{%- endcomment -%}
<li>
{%- assign months = "января|февраля|марта|апреля|мая|июня|июля|августа|сентября|октября|ноября|декабря" | split: "|" -%}
{%- assign m = post.date | date: "%-m" | minus: 1 -%}
{%- assign day = post.date | date: "%-d" -%}
{%- assign month = months[m] -%}
{%- assign year = post.date | date: "%Y" -%}
<span class="post-meta">{{ day }} {{ month }}, {{ year }}</span>
<h3>
<a class="post-link" href="{{ post.url | relative_url }}">
{{ post.title | escape }}
</a>
</h3>
{%- if site.show_excerpts -%}
<div class="post-excerpt">
{{ post.excerpt }}
</div>
{%- if post.excerpt != post.content -%}
<a href="{{ post.url | relative_url }}">
Читать далее
</a>
{%- endif -%}
{%- endif -%}
</li>
{%- endfor -%}
</ul>
<!-- Pagination links -->
{%- if paginator.total_pages > 1 -%}
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" class="previous">Предыдущая</a> -
{% else %}
<!--<span class="previous">Previous - </span>-->
{% endif %}
<span class="page_number ">Страница: {{ paginator.page }} из {{ paginator.total_pages }}</span>
{% if paginator.next_page %}
- <a href="{{ paginator.next_page_path }}" class="next">Следущая</a>
{% else %}
<!--<span class="next "> - Next</span>-->
{% endif %}
</div>
{%- endif -%}
{%- endif -%}
</div>