forked from envoyproxy/envoy-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
community.html
64 lines (59 loc) · 2.22 KB
/
community.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
---
layout: page
title: Community
custom_css: community
---
<p>The Envoy development process is an open process. Here are the general communication channels we use to communicate.</p>
<ul>
<li><a href="https://github.com/envoyproxy/envoy#contact">General contact info</a></li>
<li><a href="https://github.com/envoyproxy/envoy#reporting-security-vulnerabilities">Reporting a security vulnerability</a></li>
</ul>
<p> Envoy works with the wider community to create a strong, vibrant codebase. There are a variety of
projects and organizations built on top of Envoy. We will list them below in alphabetical order:
</p>
<section id="community" class="bg-white">
<h2 class="text-uppercase">Open Source Projects Built on Envoy Proxy</h1>
<div class="row">
{% for project in site.data.home.projects %}
<div class="col-sm-12 project">
<div class="aspect-ratio-logo-box">
<a href="{{ project.website }}">
{% if project.logo %}
<img class="name" alt="{{ project.name }}" src="/img/logos/{{ project.logo }}" />
{% else %}
<div class="name" >
<h1 class="heading-big text-uppercase text-purple text-center">
{{ project.name }}
</h1>
</div>
{% endif %}
</a>
</div>
<p class="text-dark-gray">{{ project.description }}</p>
<p>
<a href="{{ project.website }}">Learn More</a>
{% if project.github %}
|
<a href="https://github.com/{{ project.github }}">Github</a>
{% endif %}
<p>
</div>
{% endfor %}
</div>
</section>
<section id="community" class="bg-white">
<h2 class="text-uppercase">Commercial Support and/or Offerings Built on Envoy Proxy</h1>
<div class="row">
{% for company in site.data.home.partners %}
<div class="col-sm-12 project">
<div class="aspect-ratio-logo-box">
<a href="{{ company.website }}">
<img alt="{{ company.name }}" src="/img/logos/{{ company.logo }}" class="name" />
</a>
</div>
<p class="text-dark-gray">{{ company.description }}</p>
<p><a href="{{ company.website }}">Learn More</a><p>
</div>
{% endfor %}
</div>
</section>