team is now a collection, add site config for google analytics

pull/1/head
Robert Austin 2018-12-09 19:48:38 +10:00
parent f9119abcb3
commit 8c55174471
19 changed files with 83 additions and 93 deletions

View File

@ -1,7 +1,7 @@
baseurl: ''
exclude: ['README.md']
permalink: pretty
title: 'Serif Jekyll Theme'
title: 'Jekyll Serif'
collections:
services:
@ -14,21 +14,18 @@ collections:
output: true
permalink: /testimonials/:path/
defaults:
- scope:
type: services
values:
layout: service
bodyClass: page-services-single
- scope:
type: team
values:
layout: team
bodyClass: page-team-single
- scope:
path: "images"
values:
image: true
sass:
style: compact # possible values: nested expanded compact compressed
style: compact # possible values: nested expanded compact compressed
google_analytics_id: ""

View File

@ -1,11 +1,11 @@
{{ if .Site.Params.google_analytics_id }}
{{ if site.google_analytics_id }}
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id={{ .Site.Params.google_analytics_id }}"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics_id }}"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', '{{ .Site.Params.google_analytics_id }}');
gtag('config', '{{ site.google_analytics_id }}');
</script>
{{ end }}

View File

@ -1,9 +1,9 @@
<div id="main-menu-mobile" class="main-menu-mobile">
<ul>
<li><a href="{{site.baseurl}}/" class="{% if page.url == '/' %}current{% endif %}">Home</a></li>
<li><a href="{{site.baseurl}}/services/" class="{% if page.url contains 'services' %}current{% endif %}">Services</a></li>
<li><a href="{{site.baseurl}}/team/" class="{% if page.url contains 'team' %}current{% endif %}">Team</a></li>
<li><a href="{{site.baseurl}}/testimonials/" class="{% if page.url contains 'testimonials' %}current{% endif %}">Testimonials</a></li>
<li><a href="{{site.baseurl}}/contact/" class="{% if page.url contains 'contact' %}current{% endif %}">Contact</a></li>
</ul>
<ul>
<li><a href="{{site.baseurl}}/" class="{% if page.url == '/' %}current{% endif %}">Home</a></li>
<li><a href="{{site.baseurl}}/services/" class="{% if page.url contains 'services' %}current{% endif %}">Services</a></li>
<li><a href="{{site.baseurl}}/team/" class="{% if page.url contains 'team' %}current{% endif %}">Team</a></li>
<li><a href="{{site.baseurl}}/testimonials/" class="{% if page.url contains 'testimonials' %}current{% endif %}">Testimonials</a></li>
<li><a href="{{site.baseurl}}/contact/" class="{% if page.url contains 'contact' %}current{% endif %}">Contact</a></li>
</ul>
</div>

View File

@ -1,9 +1,9 @@
<div id="main-menu" class="main-menu">
<ul>
<li><a href="{{site.baseurl}}/" class="{% if page.url == '/' %}current{% endif %}">Home</a></li>
<li><a href="{{site.baseurl}}/services/" class="{% if page.url contains 'services' %}current{% endif %}">Services</a></li>
<li><a href="{{site.baseurl}}/team/" class="{% if page.url contains 'team' %}current{% endif %}">Team</a></li>
<li><a href="{{site.baseurl}}/testimonials/" class="{% if page.url contains 'testimonials' %}current{% endif %}">Testimonials</a></li>
<li><a href="{{site.baseurl}}/contact/" class="{% if page.url contains 'contact' %}current{% endif %}">Contact</a></li>
<li><a href="{{site.baseurl}}/" class="{% if page.url == '/' %}current{% endif %}">Home</a></li>
<li><a href="{{site.baseurl}}/services/" class="{% if page.url contains 'services' %}current{% endif %}">Services</a></li>
<li><a href="{{site.baseurl}}/team/" class="{% if page.url contains 'team' %}current{% endif %}">Team</a></li>
<li><a href="{{site.baseurl}}/testimonials/" class="{% if page.url contains 'testimonials' %}current{% endif %}">Testimonials</a></li>
<li><a href="{{site.baseurl}}/contact/" class="{% if page.url contains 'contact' %}current{% endif %}">Contact</a></li>
</ul>
</div>

View File

@ -1,6 +1,6 @@
<ul id="social" class="social">
<li>
<a class="social-vimeo" href="{{ .Site.Data.social.vimeo }}" target="blank">
<a class="social-vimeo" href="{{ site.data.social.vimeo }}" target="blank">
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<title>Facebook icon</title>
<path d="M22.676 0H1.324C.593 0 0 .593 0 1.324v21.352C0 23.408.593 24 1.324 24h11.494v-9.294H9.689v-3.621h3.129V8.41c0-3.099 1.894-4.785 4.659-4.785 1.325 0 2.464.097 2.796.141v3.24h-1.921c-1.5 0-1.792.721-1.792 1.771v2.311h3.584l-.465 3.63H16.56V24h6.115c.733 0 1.325-.592 1.325-1.324V1.324C24 .593 23.408 0 22.676 0" />
@ -8,12 +8,12 @@
</a>
</li>
<li>
<a class="social-twitter" href="{{ .Site.Data.social.twitter }}" target="blank"></a>
<a class="social-twitter" href="{{ site.data.social.twitter }}" target="blank"></a>
</li>
<li>
<a class="social-instagram" href="{{ .Site.Data.social.instagram }}" target="blank"></a>
<a class="social-instagram" href="{{ site.data.social.instagram }}" target="blank"></a>
</li>
<li>
<a class="social-linkedin" href="{{ .Site.Data.social.linkedin }}" target="blank"></a>
<a class="social-linkedin" href="{{ site.data.social.linkedin }}" target="blank"></a>
</li>
</ul>

View File

@ -4,6 +4,7 @@
<meta charset="utf-8">
<title>{% if page.title %}{{page.title}}{% else %}{{ site.title | escape }}{% endif %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="{{site.baseurl}}/images/favicon.png">
<link href="{{site.baseurl}}/assets/css/style.css" rel="stylesheet">
</head>
<body class='page {{page.bodyClass}}'>

View File

@ -1,11 +1,6 @@
---
layout: 'service'
title: 'Accounting'
date: 2018-11-18T12:33:46+10:00
image: '/services/noun_591323.png'
draft: false
featured: true
weight: 1
---
Lorem markdownum aequalis strigis. _Saetigeri iubeas_, vultu huic alvum nondum

View File

@ -1,9 +1,6 @@
---
title: 'Business Advisory'
date: 2018-11-28T15:14:39+10:00
image: '/services/default.png'
featured: true
draft: false
---
Lorem markdownum, dictis umbrosum dextrum, Lelegeia quamquam distantes pares

View File

@ -1,8 +1,6 @@
---
title: 'Peter Van Eijk'
type: 'team'
date: 2018-11-19T10:47:58+10:00
draft: false
image: '/images/team/peter-van-eijk-711986-unsplash.jpg'
jobtitle: 'Director'
email: 'peter@test.com'

View File

@ -1,6 +1,5 @@
---
title: 'Sage Kirk'
type: team
date: 2018-11-19T10:47:58+10:00
draft: false
image: '/images/team/sage-kirk-485982-unsplash.jpg'

View File

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100" height="100">
<svg xmlns="http://www.w3.org/2000/svg" fill="#1c3ed3" transform="matrix(.69 0 0 .69 15.5 15.5)" viewBox="0 0 164 164">
<path d="M131.5 26c.3-.4.3-1-.1-1.3-1-.9-2.1-1.7-3.1-2.5-.4-.3-1-.2-1.3.2-.3.4-.2 1 .2 1.3l3 2.4c.4.4 1 .3 1.3-.1zM117.3 17.5c.5.2 1 .1 1.3-.4.2-.5.1-1-.4-1.3l-3.6-1.8c-.5-.2-1 0-1.3.5-.2.5 0 1 .5 1.3 1.2.5 2.4 1 3.5 1.7zM102.9 11.6c.5.1 1-.1 1.2-.7.1-.5-.1-1-.7-1.2-1.3-.4-2.6-.7-3.9-1-.5-.1-1 .2-1.1.7-.1.5.2 1 .7 1.1 1.3.4 2.6.8 3.8 1.1zM110.3 14.2c.5.2 1 0 1.2-.5.2-.5 0-1-.5-1.2-1.2-.5-2.5-1-3.7-1.4-.5-.2-1 .1-1.2.6-.2.5.1 1 .6 1.2 1.2.3 2.4.8 3.6 1.3zM124 21.5c.4.3 1 .2 1.3-.3.3-.4.2-1-.3-1.3-1.1-.7-2.2-1.5-3.4-2.1-.5-.3-1-.1-1.3.3-.3.5-.1 1 .3 1.3 1.2.6 2.3 1.3 3.4 2.1zM151 53.8l1.5 3.6c.2.5.7.7 1.2.6.5-.2.7-.7.6-1.2-.5-1.2-1-2.5-1.5-3.7-.2-.5-.8-.7-1.3-.5-.5.2-.7.7-.5 1.2zM133.1 27.3c-.4.4-.3 1 .1 1.3.9.9 1.9 1.8 2.8 2.7.4.4 1 .4 1.3 0 .4-.4.4-1 0-1.3-.9-.9-1.9-1.9-2.9-2.8-.4-.3-1-.3-1.3.1zM153.7 61.1c.4 1.2.8 2.5 1.1 3.7.1.5.7.8 1.2.7.5-.1.8-.7.7-1.2-.3-1.3-.7-2.6-1.1-3.8-.2-.5-.7-.8-1.2-.6-.6.1-.8.7-.7 1.2zM155.7 68.6c.3 1.3.5 2.5.7 3.8.1.5.6.9 1.1.8.5-.1.9-.6.8-1.1-.2-1.3-.4-2.6-.7-3.9-.1-.5-.6-.8-1.1-.7-.6.1-.9.6-.8 1.1zM149.3 50.3c.2.5.8.7 1.3.4.5-.2.7-.8.4-1.3-.6-1.2-1.2-2.4-1.9-3.5-.3-.5-.8-.6-1.3-.4-.5.3-.6.8-.4 1.3.8 1.2 1.4 2.4 1.9 3.5zM143.6 39c-.4.3-.5.9-.2 1.3.7 1 1.5 2.1 2.2 3.2.3.4.9.6 1.3.3s.6-.9.3-1.3c-.7-1.1-1.5-2.2-2.2-3.3-.4-.4-1-.5-1.4-.2zM138.6 32.9c-.4.3-.4.9-.1 1.3.9 1 1.7 2 2.5 3 .3.4.9.5 1.3.2s.5-.9.2-1.3c-.8-1-1.7-2.1-2.6-3.1-.3-.4-.9-.4-1.3-.1zM33.8 26.1l3-2.4c.4-.3.5-.9.2-1.3s-.9-.5-1.3-.2c-1.1.8-2.1 1.6-3.1 2.5-.4.3-.5.9-.1 1.3.3.4.9.4 1.3.1zM40 21.4l3.3-2.1c.5-.3.6-.9.3-1.3-.3-.5-.9-.6-1.3-.3-1.1.7-2.3 1.4-3.4 2.1-.4.3-.6.9-.3 1.3.4.5 1 .6 1.4.3zM61 11.6c1.2-.4 2.5-.7 3.8-1 .5-.1.8-.6.7-1.1-.1-.5-.6-.8-1.1-.7-1.3.3-2.6.6-3.9 1-.5.1-.8.7-.7 1.2.2.5.7.8 1.2.6zM13.4 50.7c.5.2 1 0 1.3-.4.6-1.1 1.2-2.3 1.8-3.4.3-.5.1-1-.4-1.3-.5-.3-1-.1-1.3.4-.7 1.2-1.3 2.3-1.9 3.5-.2.4 0 1 .5 1.2zM10.3 58c.5.2 1-.1 1.2-.6l1.5-3.6c.2-.5 0-1-.5-1.3-.5-.2-1 0-1.3.5-.5 1.2-1 2.4-1.5 3.7-.1.5.1 1.1.6 1.3zM8 65.5c.5.1 1-.2 1.2-.7.3-1.2.7-2.5 1.1-3.7.2-.5-.1-1-.6-1.2-.5-.2-1 .1-1.2.6-.4 1.3-.8 2.6-1.1 3.8-.2.6.1 1.1.6 1.2zM17.2 43.8c.4.3 1 .2 1.3-.3.7-1.1 1.4-2.2 2.2-3.2.3-.4.2-1-.2-1.3-.4-.3-1-.2-1.3.2-.8 1.1-1.5 2.2-2.2 3.3-.4.5-.3 1 .2 1.3zM46.7 17.5c1.1-.6 2.3-1.2 3.5-1.7.5-.2.7-.8.5-1.3-.2-.5-.8-.7-1.3-.5l-3.6 1.8c-.5.2-.6.8-.4 1.3.2.4.8.6 1.3.4zM6.5 73.2c.5.1 1-.3 1.1-.8.2-1.3.4-2.6.7-3.8.1-.5-.2-1-.7-1.1-.5-.1-1 .2-1.1.7-.3 1.3-.5 2.6-.7 3.9-.1.6.2 1.1.7 1.1zM29.6 27.3c-1 .9-1.9 1.8-2.9 2.8-.4.4-.4 1 0 1.3.4.4 1 .4 1.3 0 .9-.9 1.8-1.8 2.8-2.7.4-.4.4-1 .1-1.3-.3-.5-.9-.5-1.3-.1zM24.1 33c-.9 1-1.7 2-2.6 3.1-.3.4-.3 1 .2 1.3.4.3 1 .3 1.3-.2.8-1 1.6-2 2.5-3 .3-.4.3-1-.1-1.3-.4-.4-1-.3-1.3.1zM53.7 14.2c1.2-.5 2.4-.9 3.6-1.4.5-.2.8-.7.6-1.2-.2-.5-.7-.8-1.2-.6-1.2.4-2.5.9-3.7 1.4-.5.2-.7.8-.5 1.2.2.5.7.8 1.2.6zM162 77.1h-3.2c0-.3-.1-.7-.1-1-.1-.5-.5-.9-1-.9-.5.1-.9.5-.9 1 0 .3 0 .6.1.8h-2.6c-.5 0-1 .4-1 1v7.7c0 .5.4 1 1 1h2.8c-.7 19.8-9.3 37.7-22.6 50.7H29.4c-13.3-13.1-21.8-31-22.6-50.7h2.8c.5 0 1-.4 1-1V78c0-.5-.4-1-1-1H7.1c0-.3 0-.6.1-.8.1-.5-.3-1-.9-1-.5 0-1 .3-1 .9 0 .3-.1.7-.1 1H2c-.5 0-1 .4-1 1v7.7c0 .5.4 1 1 1h3c1.5 41.5 35.5 74.4 77.1 74.4 41.6 0 75.6-32.9 77.1-74.4h3c.5 0 1-.4 1-1v-7.7c-.2-.5-.6-1-1.2-1zM2.9 79h5.8v5.8H2.9V79zm28.5 60.4h101.2c-13.4 12.3-31.2 19.8-50.6 19.8s-37.2-7.6-50.6-19.8zm129.7-54.6h-5.8V79h5.8v5.8z"/>
<path d="M22.7 12.2c2.1 0 3.9-1.5 4.4-3.5h40.4c0 .1-.1.3 0 .4.1.5.6.9 1.1.8 1.3-.2 2.6-.4 3.8-.6.4 0 .6-.3.8-.6h2.5c.2.1.4.2.6.2h.1c.3 0 .6 0 .9-.1v2.7c0 .5.4 1 1 1H86c.5 0 1-.4 1-1V8.8c.3 0 .6 0 .9.1h.1c.2 0 .4-.1.6-.2h2.5c.1.3.4.6.8.6 1.3.2 2.6.4 3.8.6.5.1 1-.2 1.1-.8v-.4h40.5c.4 2 2.2 3.5 4.4 3.5 2.5 0 4.5-2 4.5-4.5s-2-4.5-4.5-4.5c-2.1 0-3.9 1.5-4.4 3.5H86.8V3.9c0-.5-.4-1-1-1h-7.7c-.5 0-1 .4-1 1v2.9h-50c-.4-2-2.2-3.5-4.4-3.5-2.5 0-4.5 2-4.5 4.5 0 2.4 2 4.4 4.5 4.4zm118.6-7.1c1.4 0 2.6 1.2 2.6 2.6 0 1.4-1.2 2.6-2.6 2.6-1.4 0-2.6-1.2-2.6-2.6 0-1.4 1.2-2.6 2.6-2.6zm-62.2-.3h5.8v5.8h-5.8V4.8zm-56.4.3c1.4 0 2.6 1.2 2.6 2.6 0 1.4-1.2 2.6-2.6 2.6-1.4 0-2.6-1.2-2.6-2.6 0-1.4 1.2-2.6 2.6-2.6zM82 134.1c27.7 0 50.2-22.5 50.2-50.2 0-27.7-22.5-50.2-50.2-50.2S31.8 56.2 31.8 83.9c0 27.7 22.5 50.2 50.2 50.2zm0-98.5c26.6 0 48.3 21.7 48.3 48.3 0 26.6-21.7 48.3-48.3 48.3s-48.3-21.7-48.3-48.3c0-26.6 21.7-48.3 48.3-48.3z"/>
<path d="M82 112.1c15.5 0 28.2-12.6 28.2-28.2 0-15.3-12.4-27.9-27.7-28.2-.4 0-.7.2-.9.5-.2.3-.1.7.1 1 1.5 2.1 2.4 4.6 2.4 7.2 0 1.9-.4 3.7-1.2 5.4-.1.3-.3.6-.4.8-.1.1-.1.2-.2.3-.1.2-.2.3-.3.4-.1.1-.2.3-.3.4-.1.1-.1.2-.2.3-.1.2-.3.3-.4.5 0 .1-.1.1-.1.2-.2.2-.3.4-.5.5-2.2 2.1-5.2 3.4-8.4 3.4h-.9c-.3 0-.6-.1-1-.1-4.5-.7-8.2-3.8-9.6-8.1-.1-.3-.4-.6-.8-.6s-.7.1-.9.4C55.7 72.9 54 78.3 54 84c-.2 15.5 12.5 28.1 28 28.1zM69.1 85.2c0 2.3-1.9 4.2-4.2 4.2-2.3 0-4.2-1.9-4.2-4.2 0-2.3 1.9-4.2 4.2-4.2 2.4 0 4.2 1.9 4.2 4.2zm.4-4.1c.2-.9.5-1.8.9-2.7h1.7c4.3 0 8.1-2 10.7-5.2l.2-.2c.1-.2.2-.3.4-.5.1-.1.2-.2.2-.3.1-.1.2-.3.3-.5.1-.1.2-.3.3-.4l.1-.1c6.1 1 10.6 6.4 10.6 12.6 0 7.1-5.8 12.8-12.8 12.8-5.3 0-10.1-3.3-12-8.3.6-1 1-2.1 1-3.3-.1-1.4-.7-2.8-1.6-3.9zM59.3 70.7c1.8 3.7 5.2 6.4 9.2 7.4-.2.6-.5 1.2-.6 1.7-.9-.4-1.9-.7-2.9-.7-3.3 0-6.1 2.7-6.1 6.1 0 3.3 2.7 6.1 6.1 6.1 1.4 0 2.6-.5 3.6-1.2 2.4 5.2 7.6 8.6 13.4 8.6 8.1 0 14.7-6.6 14.7-14.7 0-7-5-13-11.7-14.4.6-1.6.9-3.3.9-5 0-2.4-.6-4.7-1.7-6.7 13.4 1.1 24 12.5 24 26.2 0 14.5-11.8 26.3-26.3 26.3s-26.2-12-26.2-26.5c0-4.7 1.3-9.2 3.6-13.2zM79.8 145.1c0-.5-.4-1-1-1h-23c-.5 0-1 .4-1 1 0 .5.4 1 1 1h23.1c.5 0 .9-.4.9-1zM87.3 145.1c0-.5-.4-1-1-1h-3.8c-.5 0-1 .4-1 1 0 .5.4 1 1 1h3.8c.6 0 1-.4 1-1zM89.6 146.1h2.5c.5 0 1-.4 1-1 0-.5-.4-1-1-1h-2.5c-.5 0-1 .4-1 1s.5 1 1 1zM108.2 148.9h-23c-.5 0-1 .4-1 1 0 .5.4 1 1 1h23.1c.5 0 1-.4 1-1-.1-.6-.5-1-1.1-1zM81.5 148.9h-3.8c-.5 0-1 .4-1 1 0 .5.4 1 1 1h3.8c.5 0 1-.4 1-1-.1-.6-.5-1-1-1zM74.4 148.9h-2.5c-.5 0-1 .4-1 1 0 .5.4 1 1 1h2.5c.5 0 1-.4 1-1s-.5-1-1-1z"/>
</svg>
</svg>

Before

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

View File

@ -1,11 +1,12 @@
---
title: Jekyll Serif - Jekyll Small Business Theme
layout: default
bodyClass: page-home
---
<div class="intro pb-4">
<div class="container">
<h1>Serif - Hugo Small Business Theme.</h1>
<h1>Serif - Jekyll Small Business Theme.</h1>
<p>Our business helps hundreds of customers with their accounting and taxation needs each year.</p>
</div>
</div>
@ -21,7 +22,7 @@ bodyClass: page-home
</div>
</div>
<div class="call-box-bottom">
<a href="/contact" class="button">Contact</a>
<a href="{{site.baseurl}}/contact" class="button">Contact</a>
</div>
</div>
</div>
@ -44,7 +45,7 @@ bodyClass: page-home
</div>
{% endfor %}
<div class="col-12 text-center">
<a class="button button-primary" href="{{site.baseurl}}/services">View All Services</a>
<a class="button button-primary mt-2" href="{{site.baseurl}}/services">View All Services</a>
</div>
</div>
</div>

View File

@ -1,4 +1,5 @@
---
title: "Services"
layout: default
bodyClass: page-services-list
---
@ -8,7 +9,10 @@ bodyClass: page-services-list
<div class="row">
<div class="col-12">
<h1>Services that grow with your business</h1>
<p>Our business helps hundreds of customers with their accounting and taxation needs each year.</p>
<p>
Our business helps hundreds of customers with their accounting and
taxation needs each year.
</p>
</div>
</div>
</div>
@ -20,10 +24,10 @@ bodyClass: page-services-list
<div class="col-12 col-md-4 mb-1">
<div class="service service-summary">
<div class="service-content">
<h2 class="service-title">
<h2 class="service-title">
<a href="{{site.baseurl}}{{ service.url }}">{{ service.title }}</a>
</h2>
{{ service.content | markdownify | strip_html | truncate: 100 }}
</h2>
{{ service.content | markdownify | strip_html | truncate: 100 }}
</div>
</div>
</div>

46
team.html Normal file
View File

@ -0,0 +1,46 @@
---
layout: default
bodyClass: page-team-list
---
<div class="intro">
<div class="container">
<div class="row">
<div class="col-12">
<h1>Meet The Team</h1>
<p>
Our team of qualified accountants and financial consultants can help
your business at any stage of it's growth.
</p>
</div>
</div>
</div>
</div>
<div class="container pb-6">
<div class="row">
{% for team in site.team %}
<div class="col-12 col-md-6 mb-1">
<div class="team team-summary">
{% if team.image %}
<div class="team-image">
<img
alt="{{ team.title }} logo"
class="img-fluid mb-2"
src="{{site.baseurl}}{{ team.image }}"
/>
</div>
{% endif %}
<div class="team-meta">
<h2 class="team-name">{{ team.title }}</h2>
<p class="team-description">{{ team.Jobtitle }}</p>
{% if team.Linkedinurl %}
<a target="_blank" href="{{ team.Linkedinurl }}">Linked In</a>
{% endif %}
</div>
<div class="team-content">{{ team.content }}</div>
</div>
</div>
{% endfor %}
</div>
</div>

View File

@ -1,41 +0,0 @@
---
layout: default
bodyClass: page-team-list
---
<div class="intro">
<div class="container">
<div class="row">
<div class="col-12">
<h1>Meet The Team</h1>
<p>Our team of qualified accountants and financial consultants can help your business at any stage of it's growth.</p>
</div>
</div>
</div>
</div>
<div class="container pb-6">
<div class="row">
{% for team in site.pages %}
{% if team.type == 'team' %}
<div class="col-12 col-md-6 mb-1">
<div class="team team-summary">
{% if team.image %}
<div class="team-image">
<img alt="{{ team.title }} logo" class="img-fluid mb-2" src="{{site.baseurl}}{{ team.image }}" />
</div>
{% endif %}
<div class="team-meta">
<h2 class="team-name">{{ team.title }}</h2>
<p class="team-description">{{ team.Jobtitle }}</p>
{% if team.Linkedinurl %}
<a target="_blank" href="{{ team.Linkedinurl }}">Linked In</a>
{% endif %}
</div>
<div class="team-content">{{ team.content }}</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>
</div>