forked from babel/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
users.html
49 lines (45 loc) · 1.58 KB
/
users.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
---
layout: default
title: See who's using Babel
description: See who's using Babel.
permalink: /users/
---
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<div class="page-header text-center">
<h1>See who's using <!--Ember-->Babel</h1>
<p class="lead" data-title="Great artists steal">
Logos are added by company representatives. These companies may or may
not be using <!--Ember-->Babel on their main web properties, but they're
definitely using it somewhere in their organizations :)
</p>
</div>
<div class="container-fluid babel-user-container">
<div class="row">
{% for user in site.data.users %}
<div class="col-md-4 col-sm-6">
<div class="babel-user-target" id="{{user.name}}"></div>
<a class="babel-user" href="{{user.url}}" title="{{user.name}}">
<img class="img-responsive" src="/images/users/{{user.logo}}" alt="{{user.name}}">
</a>
</div>
{% endfor %}
</div>
</div>
<hr>
<div class="text-center">
<p>
Logos are submitted by company and project representatives.
</p>
<p>
To add your company or project to this page,
<a href="https://github.com/babel/babel.github.io/pulls?utf8=%E2%9C%93&q=is%3Apr+is%3Aclosed+%22New+User%3A%22">open a PR</a>.
</p>
<p>
For your logo, a 500x200 svg run through <code>svgo</code> would be great.
</p>
</div>
</div>
</div>
</div>