-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpv.html
38 lines (36 loc) · 1.16 KB
/
pv.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
---
layout: default
title: Photograph & Video
---
<div class="container-fluid p-0">
<div class="row rounded-left">
<div class="col p-0">
<span class=" mobile__size">
<div class="d-flex justify-content-right">
<a href="/p&v/" class="list-group-item list-group-item-action" tabindex="-1" aria-disabled="true">
<h1>Photograph & Video</h1>
</a>
</div>
</span>
<div class="row row-cols-1 row-cols-md-3 g-4 p-1">
{% for post in site.posts %}
{% if post.type=="pv" %}
<div class="col p-0">
<div class="card h-100">
<div class="card-header">
{{ post.title }}
</div>
<a href="{{ post.url }}" class="btn btn-light" role="button">
<img src="{{ post.image_url }}" class="card-img-top img-fluid" alt="{{ post.title }}">
</a>
<div class="card-footer">
<small class="text-muted">{{ post.date | date_to_string }}</small>
</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>
</div>