forked from zerostaticthemes/jekyll-serif-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.html
36 lines (34 loc) · 888 Bytes
/
services.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: Services
layout: default
bodyClass: page-services-list
---
<div class="intro">
<div class="container">
<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>
</div>
</div>
</div>
</div>
<div class="container pb-6">
<div class="row">
{% for service in site.services %}
<div class="col-12 col-md-4 mb-1">
<div class="service service-summary">
<div class="service-content">
<h2 class="service-title">
<a href="{{site.baseurl}}{{ service.url }}">{{ service.title }}</a>
</h2>
{{ service.content | markdownify | strip_html | truncate: 100 }}
</div>
</div>
</div>
{% endfor %}
</div>
</div>