-
Notifications
You must be signed in to change notification settings - Fork 2
/
overview.html
70 lines (65 loc) · 2.37 KB
/
overview.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
---
layout: page
title: "How it works"
sub_title: "interoperability between three different technologies"
description: "interoperability between three different technologies"
black_menu: true
image: "/assets/images/art/og_img.png"
three_columns_area:
enable: true
title: ""
columns_data:
- title: "Browser extension"
image: "/assets/images/art/addon.jpg"
read_more_text: "For Users"
read_more_url: "/addon"
- title: "Studio"
image: "/assets/images/art/studio.jpg"
read_more_text: "For Content Creators"
read_more_url: "/studio"
- title: "Data Donation"
image: "/assets/images/art/data.jpg"
read_more_text: "For Data-Activists"
read_more_url: "/data-donation"
---
<div class="container inner pt-80">
{% if page.three_columns_area.enable %}
<div class="three-columns-wrapper">
<div class="row">
<div class="col-md-9 mx-auto">
{% if page.three_columns_area.title %}
<h3 class="display-3 text-center">{{page.three_columns_area.title}}</h3>
{% endif %}
</div>
</div>
<div class="space40"></div>
<div class="grid grid-view boxed">
<div class="tiles text-center">
<div class="row isotope">
{% for data in page.three_columns_area.columns_data %}
<div class="item grid-sizer col-md-4 corporate application">
<div class="box bg-white shadow p-30">
<figure class="main overlay overlay1 rounded mb-30">
<a href="{{data.read_more_url}}"><img src="{{data.image}}" alt="{{data.title}}"/></a>
<figcaption>
<h5 class="from-top text-uppercase mb-0">{{data.read_more_text}}</h5>
</figcaption>
</figure>
<div class="post-content">
<h5 class="text-uppercase mb-0">{{data.title}}</h5>
</div>
<!-- /.post-content -->
</div>
<!-- /.box -->
</div>
{% endfor %}
</div>
<!-- /.row -->
</div>
<!-- /.tiles -->
</div>
<!-- /.grid-view -->
</div>
<div class="space120"></div>
{% endif %}
</div>