-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
75 lines (71 loc) · 4.27 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
---
layout: default
permalink: /about/
title: About Us
meta-content:
image: /uploads/aboutus.jpg
description: >-
Holler designs, builds, and delivers content to enhance your online
communications by serving up relevant and expressive content within your
messaging apps. Get to know us.
---
<div class="container pt-intro">
<div class="row">
<div class="col-md-6 editable">
<p>So, what is Holler? We’re a tech brand, but we’re way more than just that. We’re real people who know that communicating in today’s world is convenient, yet complicated. Let’s be honest — sometimes words on a screen just don’t cut it. </p>
<p>Knowing this, we set out on a mission to make your texts, posts, and DMs more expressive. How? By creating original content meant for messaging (think fun animated stickers) and then recommending the most relevant ones at just the right moment. </p>
</div>
<div class="col-md-6 editable">
<p>We’re proud to say that our innovative technology sparks more meaningful online convos every day, everywhere. And it’s been built with your privacy in mind.</p>
<p>Holler is integrated with the top messaging apps and keyboards you’re using, and we’ve already helped millions of people add excitement to their digital interactions.</p>
<p>Looking for a better way to #expressyourself? All you have to do is Holler.</p>
</div>
<div class="col my-3">
<h2 class="editable">
Although our team works hard, we don’t take ourselves too seriously. Learn about us!
</h2>
</div>
</div>
<div id="team" class="clearfix mb-5 position-relative">
{% for member in site.data.team %}
<!-- Button trigger modal -->
<a href="#" class="d-inline float-left text-center text-decoration-none" data-toggle="modal" data-target="#team-{{forloop.index}}">
<img src="{{ member.image }}" alt="{{member.image_alt_text}}" class="team-image d-inline-block img-fluid" /><br />
<div class="team-image-caption d-inline-block">
<p class="text-decoration-none mt-md-3"><strong>{{member.name}}</strong><br />{{member.title}}</p>
</div>
</a>
<!-- Modal -->
<div class="modal fade" id="team-{{forloop.index}}" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog m-auto" role="document">
<div class="modal-content">
<button type="button" class="close text-right" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">
<svg width="28px" height="29px" viewbox="0 0 28 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs></defs>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round">
<g id="1920x1080_TeamBio" transform="translate(-1808.000000, -563.000000)" stroke="#424648" stroke-width="4">
<g id="Group" transform="translate(1810.000000, 565.000000)">
<path d="M0.307692308,0 L23.4591346,23.7606908" id="Line-4" />
<path d="M0,1 L24,24" id="Line-4" transform="translate(12.000000, 12.500000) rotate(-90.000000) translate(-12.000000, -12.500000) " />
</g>
</g>
</g>
</svg>
</span>
</button>
<div class="row position-relative" style="white-space: normal;">
<div class="col-10 col-lg-5 offset-1 py-5">
<h2 class="modal-title" id="exampleModalLabel"><b>{{ member.name }}</b><br />{{ member.title }}</h2>
<p class="mt-4">{{member.modal.bio}}</p>
</div>
<div class="col-10 col-lg-5">
<img src="{{ member.modal.image}}" alt="{{member.modal.image_alt_text}}" class="img-fluid" />
</div>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>