generated from CloudCannon/justice-jekyll-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
40 lines (35 loc) · 1.21 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
37
38
39
40
---
title: About
call_to_action: Contact
background_image_path:
large_header: false
show_in_navigation: false
navigation_order: 1
---
<div class="editable">
<p>
Serving your community for over a century, Justice Law is committed to helping people through a number of services.
Our services range from conveyancing, mortgages to family law. Our clients range from large businesses to first home buyers.
</p>
<p>Meet the members of our capable team:</p>
</div>
<p class="editor-link"><a href="cloudcannon:collections/_staff_members" class="btn"><strong>✎</strong> Update Staff Members</a></p>
<ul class="staff-list">
{% for member in site.staff_members %}
<li class="staff">
<div class="staff-details">
<div class="staff-image">
<img src="{{ member.image }}" alt="Staff photo for {{ member.name }}" width="120" height="120">
</div>
<ul class="staff-info">
<li>{{ member.name }}</li>
<li><small>{{ member.credentials }}</small></li>
<li><a href="tel:{{ site.data.company.phone }}">{{ site.data.company.phone }}</a> ext {{ member.phone_extension }}</li>
</ul>
</div>
<div class="staff-bio">
<p>{{ member.content | markdownify }}</p>
</div>
</li>
{% endfor %}
</ul>