-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsolutions.html
44 lines (37 loc) · 1.24 KB
/
solutions.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
41
42
43
44
---
title: Solutions Hub
excerpt: Browse the collection of expertly crafted automations, integrations, widgets, and data queries.
summary: ""
layout: page
permalink: /solutions/
redirect_from:
- /cookbook/
- /examples/
- /integrations/
jumbotron:
title: Solutions Hub
tagline: Browse the collection of expertly crafted automations, integrations, widgets, and data queries.
breadcrumbs:
- label: Resources »
url: /resources/
---
{% assign grouped = site.solutions | group_by_exp: "item", "item.path | split: '/' | slice: 1, 1 | first" %}
<ul>
{% for group in grouped %}
<li><a href="#{{ group.name | slugify }}">{{ group.name | capitalize }}</a></li>
{% endfor %}
</ul>
{% for group in grouped %}
<h1 id="{{ group.name | slugify }}">{{ group.name | capitalize }}</h1>
<div class="integrations" style="column-count:2;column-width:500px;margin-bottom:20px;">
<ul class="articles">
{% for solution in group.items %}
<li style="break-inside:avoid;page-break-inside: avoid;-webkit-column-break-inside: avoid;">
<a href="{{ solution.url }}">{{ solution.title }}</a>
<div>{{solution.excerpt}}</div>
</li>
{% endfor %}
</ul>
</div>
{% endfor %}
{% include testimonials.html %}