forked from BrightcoveLearning/audience-insights-en
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (32 loc) · 1.12 KB
/
index.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
---
title: Brightcove Audience Insights Documentation
parent: null
layout: landing_page
---
<!-- main content -->
<div class="page-content">
<div class="container">
<div class="docs-overview py-5">
<div class="row justify-content-center">
{% for section in site.data.navigation offset:1 %}
<div class="col-12 col-lg-4 py-3">
<div class="card-hover card shadow-sm">
<div class="card-body">
<h5 class="card-title mb-3">
<span class="span-icon card-icon-holder icon-theme me-2">
<i class="{{ section.icon }}"></i>
</span><!--//card-icon-holder-->
<span class="card-title-text">{{ section.name }}</span>
</h5>
<div class="card-text">
{{ section.description }}
</div>
<a class="card-link-mask" href="{{ section.url }}"></a>
</div><!--//card-body-->
</div><!--//card-->
</div><!--//col-->
{% endfor %}
</div><!--//row-->
</div><!--//container-->
</div><!--//container-->
</div><!--//page-content-->