-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (36 loc) · 1.31 KB
/
Copy pathindex.html
File metadata and controls
39 lines (36 loc) · 1.31 KB
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
---
layout: default
---
{% include pages.html %}
<!-- posts -->
<div class="post-container post-container_content">
{% for post in paginator.posts %}
<div class="post">
<a class="mobile_link" href="{{ post.url }}"></a>
<div class="poster_cell">
<a href="{{ post.url }}"><img class="mposter" src="/assets/posters/{{ post.poster }}" alt=""/></a>
</div>
<div class="mcontent">
<div class="mcontent__title">
<a href="{{ post.url }}">{{ post.title }}</a>
</div>
<div class="mcontent__title-jp">
<span>{{ post.title_jp }}</span>
</div>
<div class="mcontent__episodes">
<span>Готово серий: <b>{{ post.episodes }}</b></span>
</div>
<div class="mcontent__description">
{{ post.description }}
</div>
<div class="mcontent__year">
<span>Год выпуска: {{ post.year }}</span>
</div>
<div class="mcontent__genres">
{% for g in post.genres %}<span>{{ g }}</span>{% endfor %}
</div>
</div>
</div>
{% endfor %}
</div>
{% include pages.html %}