-
Notifications
You must be signed in to change notification settings - Fork 220
/
users.html
52 lines (49 loc) · 1.39 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
50
51
52
---
layout: default
title: Users of PM2
description: PM2 Users
permalink: /users/
---
<section class="section-users">
<div class="section-background">
<div class="section-wrapper">
<div class="hexagon hexagon-1"></div>
<div class="hexagon hexagon-2"></div>
<div class="hexagon hexagon-3"></div>
<div class="hexagon hexagon-4"></div>
</div>
</div>
<div class="section-wrapper">
<h1>{{ page.title }}</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 class="users">
{% for user in site.data.users %}
<div class="user">
<div class="user-ratio"></div>
<div class="user-image">
<img
src="{{ site.url }}/images/users/{{user.logo}}"
alt="{{user.name}}"
/>
</div>
</div>
{% endfor %}
<div class="user-filler"></div>
<div class="user-filler"></div>
<div class="user-filler"></div>
<div class="user-filler"></div>
<div class="user-filler"></div>
</div>
<center>
<a
href="{{site.repo_url}}/tree/master/images/users"
class="button accent-border border-corners inner-shadows"
>
List your company
</a>
</center>
</div>
</section>