-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
39 lines (23 loc) · 958 Bytes
/
blog.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
---
layout: layouts/vedlejsi-strana.njk
title: Blog
---
<!--Header-image-->
<figcaption class="pages__img-wrapp"><img class="pages__img" src="/images/dlouhodoba-podpora-header.jpg" alt="kocky-adopce"></figcaption>
<main class="wrapper">
<!--Hlavní nadpis stránky-->
<div class="wrapper__cats">
<h2 class="cats__title">Blog</h2>
</div>
{% for prispevek in collections.blog %}
<!--Článek-->
<section class="text blog">
<figcaption class="text__wrapp-img"><img class="blog__img" src="/images/{{ prispevek.data.foto }}" alt="kočka útulek"></figcaption>
<div class="blog__content">
<h2 class="text__title">{{ prispevek.data.title }}</h2>
<p class="text__paragraph">{{ prispevek.data.perex }} </p>
<div class="wrapp-butt"><a class="button button--primary" href="{{ prispevek.url }}">celý článek</a></div>
</div>
</section>
{% endfor %}
</main>