This repository was archived by the owner on Dec 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
43 lines (41 loc) · 1.39 KB
/
portfolio.html
File metadata and controls
43 lines (41 loc) · 1.39 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
40
41
42
43
---
layout: page
title: Portfolio
permalink: /portfolio/
---
<div class="portfolio">
<div class="row row-cols-1 row-cols-xl-2 g-4 align-items-end">
{% for post in site.portfolio %}
<div class="col">
<div class="lc-block">
<a href="{{ post.url | relative_url }}">
<img src="{{site.baseurl}}/assets/images/{{post.image}}" class="img-fluid" style="object-fit: contain;" alt="{{ post.title }}">
</a>
</div>
<div class="lc-block">
<span><strong>{{ post.title }}</strong></span>
{% if post.subtitle %}
<p>{{ post.subtitle }}</p>
{% endif %}
</div>
</div>
{% endfor %}
</div>
</div>
<!-- <div class="portfolio">
<div class="row row-cols-1 row-cols-md-3 g-4">
{% for post in site.portfolio %}
<div class="col">
<div class="card">
<a href="{{ post.url | relative_url }}">
<img src="{{site.baseurl}}/assets/images/{{post.image}}" class="card-img-top" alt="...">
</a>
<div class="card-body">
<span class="card-title"><strong>{{ post.title }}</strong></span>
<p class="card-text">{{ post.subtitle }}</p>
</div>
</div>
</div>
{% endfor %}
</div>
</div> -->