-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathintegrations.html
More file actions
49 lines (46 loc) · 1.56 KB
/
integrations.html
File metadata and controls
49 lines (46 loc) · 1.56 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
47
48
49
---
layout: default
title: Integrations
---
<div class="content-lg text-center ">
<h1 class="f1-light h00-mktg mt-8">Integrations</h1>
<p class="lead mb-0">
List of easily installable integrations for use with Deliverybot.
</p>
</div>
<div class="mt-3">
<div class="content-lg">
<div class="clearfix container-lg shadow">
{% for integration in site.data.integrations %}
<div class="col-12 col-md-4 col-lg-4 float-left p-2">
<div class="Box border box-shadow-medium hover-grow" style="width: 100%;">
<a target="_blank" class="text-gray-light" style="text-decoration: none;"
href="/docs/integrations/{{integration.id}}">
<div class="Box-body">
<h3 class="Box-title f2-light mb-3">
{{ integration.name }}
</h3>
<div class="text-center p-4">
<img src="{{integration.image}}" width="90px" height="90px">
</div>
<div>
<p>{{integration.description}}</p>
</div>
<div>
{% for label in integration.labels %}
<span class="Label Label--gray">{{label}}</span>
{% endfor %}
</div>
</div>
</a>
</div>
</div>
{% endfor %}
</div>
</div>
<div class="mt-5 text-center text-light-gray">
Need help? <a href="mailto:{{site.support_email}}">{{site.support_email}}</a>
<br>
Or chat with the community on <a target="_blank" href="{{site.spectrum_url}}">Spectrum</a>
</div>
</div>