-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
36 lines (33 loc) · 1.1 KB
/
about.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
---
title: About Us
permalink: "/about/"
description: Lorem ipsum dolor sit amet, consectetur adipisicing elit. Soluta veritatis
in tenetur doloremque, maiores doloribus officia iste. Dolores.
layout: minimal
hero_image: "/images/sprinkles_background_1.jpg"
---
{% include welcome.html %}
<div class="site-section bg-light">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="heading-border-bottom font-weight-bold serif text-black mb-5 text-center">Our Team</h2>
</div>
</div>
<div class="row align-items-stretch">
{% for person in site.team %}
<div class="col-lg-4 col-md-6 mb-5">
<div class="post-entry-1 h-100 person-1">
<img src="{{ person.image | prepend: site.baseurl }}" alt="{{ person.name }}" class="img-fluid">
<div class="post-entry-1-contents">
<span class="meta">{{ person.title }}</span>
<h2>{{ person.name }}</h2>
<p>{{ person.content | markdownify }}</p>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
{% include learn_more.html %}