-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
160 lines (157 loc) · 8.71 KB
/
index.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="libs/bootstrap-5.3.3-dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="libs/bootstrap-icons-1.11.3/font/bootstrap-icons.css">
<link rel="stylesheet" href="main.css">
<script src="mode-toggle.js"></script>
<link rel="icon" type="image/png" href="img/logo_yellow.svg">
<title>Peering Manager</title>
</head>
<body>
<header class="navbar navbar-expand-lg sticky-top bg-body-tertiary border-bottom">
<div class="container-fluid">
<a href="/" class="navbar-brand">
<img src="img/logo_yellow.svg" height="48" alt="Peering Manager Logo"> Peering Manager
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto">
<li class="nav-item">
<a class="nav-link" href="https://docs.peering-manager.net/">
<i class="bi bi-book-fill"></i> Documentation
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/peering-manager/">
<i class="bi bi-github"></i> GitHub
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="talks.html"><i class="bi bi-easel-fill"></i>
Talks</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://netdev.chat">
<i class="bi bi-slack"></i> NetDev
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/peering-manager/peering-manager/discussions">
<i class="bi bi-patch-question-fill"></i> Get Help
</a>
</li>
</ul>
<ul class="navbar-nav flex-row flex-wrap ms-md-auto">
<li class="nav-item dropdown">
<button class="btn btn-link nav-link py-2 px-0 px-lg-2 dropdown-toggle d-flex align-items-center" id="bd-theme" type="button" aria-expanded="false" data-bs-toggle="dropdown" data-bs-display="static">
<svg class="bi my-1 theme-icon-active"><use href="libs/bootstrap-icons-1.11.3/bootstrap-icons.svg#circle-half"></use></svg>
<span class="d-lg-none ms-2">Toggle theme</span>
</button>
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="bd-theme" style="--bs-dropdown-min-width: 8rem;">
<li>
<button type="button" class="dropdown-item d-flex align-items-center" data-bs-theme-value="light">
<svg class="bi me-2 opacity-50 theme-icon"><use href="libs/bootstrap-icons-1.11.3/bootstrap-icons.svg#sun-fill"></use></svg>
Light
<svg class="bi ms-auto d-none"><use href="libs/bootstrap-icons-1.11.3/bootstrap-icons.svg#check2"></use></svg>
</button>
</li>
<li>
<button type="button" class="dropdown-item d-flex align-items-center active" data-bs-theme-value="dark">
<svg class="bi me-2 opacity-50 theme-icon"><use href="libs/bootstrap-icons-1.11.3/bootstrap-icons.svg#moon-stars-fill"></use></svg>
Dark
<svg class="bi ms-auto d-none"><use href="libs/bootstrap-icons-1.11.3/bootstrap-icons.svg#check2"></use></svg>
</button>
</li>
<li>
<button type="button" class="dropdown-item d-flex align-items-center" data-bs-theme-value="auto">
<svg class="bi me-2 opacity-50 theme-icon"><use href="libs/bootstrap-icons-1.11.3/bootstrap-icons.svg#circle-half"></use></svg>
Auto
<svg class="bi ms-auto d-none"><use href="libs/bootstrap-icons-1.11.3/bootstrap-icons.svg#check2"></use></svg>
</button>
</li>
</ul>
</li>
</ul>
</div>
</div>
</header>
<div class="home">
<div class="header section less-padding bg-body-tertiary">
<div class="container z-10">
<div class="text-center">
<img src="img/pm-light.svg" class="img-fluid hide-theme-dark" alt="Peering Manager">
<img src="img/pm-dark.svg" class="img-fluid hide-theme-light" alt="Peering Manager">
<div class="buttons mt-4">
<a href="https://demo.peering-manager.net/" target="_blank" rel="nofollow noopener" class="btn btn-custom">
Demo
</a>
<a href="https://peering-manager.readthedocs.io/en/latest/setup/1-postgresql/" target="_blank" rel="nofollow noopener" class="btn btn-custom">
Get started
</a>
</div>
</div>
</div>
</div>
<div class="section bg-body-secondary">
<div class="container text-center">
<h1 class="text-dark-yellow mb-4">Peering Manager</h1>
<h3 class="text-dark-emphasis text-shrink leading-normal font-normal mx-auto">Peering Manager is an open-source BGP
session management solution built with Python and the Django Framework. Designed with features and simplicity in mind, it allows
engineers to track, maintain and configure BGP sessions from a centralised management point without the usual tedious manual provisioning task.</h3>
<h3 class="text-dark-emphasis text-shrink leading-normal font-normal mx-auto">Built for network engineers, by network engineers. Peering Manager's
team is committed to building a flexible, scaleable and future proof session management tool enabling network engineers to make the most out of
their networks.</h3>
</div>
</div>
<div class="section bg-body-tertiary">
<div class="container text-center">
<h1 class="text-dark-emphasis mb-4">Sponsoring</h1>
<h3 class="text-dark-emphasis text-shrink leading-normal font-normal mx-auto">Peering Manager is free and will
remain free. However developing does cost money to pay for domain names, servers and most of all, it takes
time. You can help secure Peering Manager's future by any means you feel necessary. Any and all sponsorships are greatly appreciated.</h3>
<div class="d-grid gap-2 col-6 mx-auto mt-4">
<a href="https://github.com/sponsors/gmazoyer" target="_blank" rel="nofollow noopener" class="btn btn-lg btn-outline-danger">
<i class="bi bi-heart-fill"></i> GitHub Sponsors
</a>
<div class="btn-group">
<a href="https://ko-fi.com/gmazoyer" target="_blank" rel="nofollow noopener" class="btn btn-outline-secondary">
<i class="bi bi-cup-hot-fill"></i> Ko-fi
</a>
<a href="https://paypal.me/GuillaumeMazoyer" target="_blank" rel="nofollow noopener" class="btn btn-outline-secondary">
<i class="bi bi-paypal"></i> Paypal
</a>
</div>
</div>
<hr>
<h3 class="text-dark-emphasis text-shrink leading-normal font-normal mx-auto" id="sponsors">The amazing sponsors believing in the Peering Manager project:</h3>
<div class="row align-items-center mb-5">
<a class="col" href="https://www.linx.net" target="_blank" rel="nofollow noopener">
<img src="img/logo_linx.png" height="120" class="d-inline-block align-top" alt="London Internet Exchange">
</a>
<a class="col" href="https://www.clouvider.com/" target="_blank" rel="nofollow noopener">
<img src="img/logo_clouvider.svg" height="160" class="d-inline-block align-top" alt="Clouvider">
</a>
<a class="col" href="https://www.htp.net/" target="_blank" rel="nofollow noopener">
<img src="img/logo_htp.png" height="180" class="d-inline-block align-top" alt="htp GmbH">
</a>
</div>
</div>
</div>
<div class="home">
<div class="section less-padding bg-secondary">
<div class="container text-center text-light">
<div class="footer">Apache-2.0 Licensed | Copyright © 2017 - 2024 Guillaume Mazoyer & Contributors</div>
</div>
</div>
</div>
</div>
<script src="libs/bootstrap-5.3.3-dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script src="svg4everybody.min.js"></script>
<script>svg4everybody();</script>
</body>
</html>