-
Notifications
You must be signed in to change notification settings - Fork 11
/
users.html
43 lines (39 loc) · 1.33 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
---
layout: default
title: Users of PM2
description: PM2 Users
permalink: /users/
---
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<div class="page-header text-center">
<h1>PM2 Users</h1>
<p class="lead" data-title="Great artists steal">
These companies may or may not be using PM2 on their main web properties, but they're
definitely using it somewhere in their organizations :)
</p>
</div>
<div class="container-fluid pm2-user-container">
<div class="row">
{% for user in site.data.users %}
<div class="col-md-4 col-sm-6">
<div id="{{user.name}}"></div>
<a class="pm2-user" href="{{user.url}}" title="{{user.name}}">
<img class="img-responsive" src="/images/users/{{user.logo}}" alt="{{user.name}}">
</a>
</div>
{% endfor %}
</div>
</div>
<center>
<a style="color:white" href="https://github.com/keymetrics/keymetrics.github.io/tree/master/images/users" class="btn btn-primary">List your company</a>
</center>
<!-- <div class="text-center"> -->
<!-- <p> -->
<!-- Logos are submitted by company and project representatives. -->
<!-- </p> -->
<!-- </div> -->
</div>
</div>
</div>