-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathauthors.html
More file actions
46 lines (45 loc) · 1.3 KB
/
authors.html
File metadata and controls
46 lines (45 loc) · 1.3 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
44
45
46
---
layout: intro
title: Authors
description:
background: "/assets/images/bg-author.jpg"
---
<div class="row row-cols-1 row-cols-md-3 g-4">
{% for author in site.authors %}
<div class="col">
<div class="card my-4 shadow p-3 mb-5 bg-body rounded">
<img
alt="{{ author[1].name }}"
src="{{author[1].avatar}}"
class="card-img-top"
/>
<class class="card-body">
<h5 class="card-title">{{ author[1].name }}</h5>
<p class="card-text">{{ author[1].description }}</p>
<div class="icon-block mt-3 d-flex justify-content-centre">
<div>
<a target="_blank" href="{{ author[1].twitter }}"
><i class="fab fa-twitter text-muted" aria-hidden="true"></i
></a>
<a target="_blank" href="{{ author[1].instagram }}"
><i
class="fab fa-instagram-square text-muted"
aria-hidden="true"
></i
></a>
<a target="_blank" href="{{ author[1].facebook }}"
><i
class="fab fa-facebook-square text-muted"
aria-hidden="true"
></i
></a>
</div>
</div>
</class>
</div>
</div>
{% endfor %}
</div>