-
Notifications
You must be signed in to change notification settings - Fork 11
/
about.html
103 lines (102 loc) · 4.14 KB
/
about.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
---
layout: page
title: About
permalink: /about/
---
<section class="block block__hero block__hero--standard">
<div class="container">
<!-- Top Row | Logo & Menu -->
<div class="row">
<div class="hero__item hero__item--bottom-left">
{% include nav-primary.html %}
</div>
<div class="column">
<span class="hero__dot hero__dot--top-left"></span>
<span class="hero__dot hero__dot--top-right"></span>
<span class="hero__dot hero__dot--bottom-left"></span>
<span class="hero__dot hero__dot--bottom-right"></span>
<a href="{{site.url}}" class="hero__item hero__item--top-left">
<img class="brand" src="{{ site.data.site.site_logo }}" alt="Logo">
</a>
</div>
<div class="column">
<span class="hero__dot hero__dot--top-right"></span>
<span class="hero__dot hero__dot--bottom-right"></span>
</div>
<div class="column no-mobile">
<span class="hero__dot hero__dot--top-right"></span>
<span class="hero__dot hero__dot--bottom-right"></span>
</div>
<div class="column no-mobile">
<span class="hero__dot hero__dot--top-right"></span>
<span class="hero__dot hero__dot--bottom-right"></span>
</div>
<div class="column no-mobile">
<span class="hero__dot hero__dot--top-right"></span>
<span class="hero__dot hero__dot--bottom-right"></span>
</div>
<div class="column">
<span class="hero__dot hero__dot--top-right"></span>
<span class="hero__dot hero__dot--bottom-right"></span>
<div class="hero__item hero__item--top-right">
{% include menu-trigger.html %}
</div>
</div>
</div>
<!-- Second Row | Title & Nav -->
<div class="row">
<div class="column">
<span class="hero__dot hero__dot--bottom-left"></span>
<span class="hero__dot hero__dot--bottom-right"></span>
<div class="hero__item hero__item--bottom-left">
<h1 class="hero__title">{{ site.data.about.hero.title }}</h1>
</div>
</div>
<div class="column">
<span class="hero__dot hero__dot--bottom-right"></span>
</div>
<div class="column no-mobile">
<span class="hero__dot hero__dot--bottom-right"></span>
</div>
<div class="column no-mobile">
<span class="hero__dot hero__dot--bottom-right"></span>
</div>
<div class="column no-mobile">
<span class="hero__dot hero__dot--bottom-right"></span>
</div>
<div class="column">
<span class="hero__dot hero__dot--bottom-right"></span>
</div>
</div>
</div>
</section>
<section class="block block__text">
<div class="container">
{{ site.data.about.body | markdownify }}
</div>
</section>
{% include partner-list.html %}
<section class="block block__grid">
<div class="container">
<div class="grid__grid">
{% for item in site.data.about.grid %}
<a class="grid__item" href="{{ item.link }}">
<div class="grid__item-content">
<h3>{{ item.title }}</h3>
<p>{{ item.description }}</p>
<div class="button button--white">
Read More
<span class="dot dot--top-left"></span>
<span class="dot dot--top-right"></span>
<span class="dot dot--bottom-left"></span>
<span class="dot dot--bottom-right"></span>
</div>
</div>
<div class="grid__item-image">
<img src="{{ item.image }}">
</div>
</a>
{% endfor %}
</div>
</div>
</section>