-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbike.html
34 lines (34 loc) · 1.04 KB
/
bike.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
---
permalink: /bike/
redirect_from: /bike.html
title: на колёсах
categories: [bike]
---
{% include header.html -%}
<main>
<article>
<header>
<h1 lang="ru">велик</h1>
<h1 lang="en">bike</h1>
<h1 lang="es">bici</h1>
</header>
<div class="cntrd">
<a class="blk" href="/img/2023-09-16_01.jpg"><span class="img-ph" data-src="/img/2023-09-16_01.jpg" data-alt="городской велосипед Elops 3 на фоне реки Невы, вид сбоку, 2023.09.16"></span></a>
<a class="blk" href="/img/2023-09-16_02.jpg"><span class="img-ph" data-src="/img/2023-09-16_02.jpg" data-alt="городской велосипед Elops 3 на фоне реки Невы, вид сзади, 2023.09.16"></span></a>
</div>
<ul class="pl">
{%- for post in site.posts -%}
{%- if post.categories contains "bike" -%}
<li>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
{{ post.excerpt | strip }}
<div class="dt">{{ post.date | date: "%Y.%m.%d" }}</div>
</li>
{%- endif -%}
{%- endfor -%}
</ul>
<footer>
</footer>
</article>
</main>
{%- include footer.html %}