-
Notifications
You must be signed in to change notification settings - Fork 9
/
server.html
126 lines (113 loc) · 5.19 KB
/
server.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
---
layout: page
---
<!DOCTYPE html>
<html dir="ltr" lang="en">
<head>
{% include head.html %}
<link href="./dist/css/pulsar.css" rel="stylesheet">
<style>
.jitsi-mm-logo {
height: 34px;
}
@media (min-width: 576px) {
.margin-left-right {
margin-right: .5rem !important;
margin-left: .5rem !important;
}
}
</style>
</head>
<body>
<div class="preloader">
<div class="lds-ripple">
<div class="lds-pos"></div>
<div class="lds-pos"></div>
</div>
</div>
<div id="main-wrapper" data-theme="light" data-layout="vertical" data-navbarbg="skin6" data-sidebartype="full"
data-sidebar-position="fixed" data-header-position="fixed" data-boxed-layout="full">
{% include header.html %}
{% include sidebar.html %}
<div class="page-wrapper" id="vue-table">
<div class="page-breadcrumb" id="breadcrumb">
<div class="row">
<div class="col-12 align-self-center">
<h1 class="page-title text-dark font-weight-medium mb-1">I server che rendono possibile questo
progetto</h1>
<div class="d-flex align-items-center">
<nav aria-label="breadcrumb">
<ol class="breadcrumb m-0 p-0">
<li class="breadcrumb-item">
Messi a disposizione gratuitamente da aziende, istituzioni, associazioni e
privati.
</li>
</ol>
</nav>
</div>
</div>
</div>
</div>
<div class="container-fluid" style="padding-top: 15px;">
<div class="card-group">
<div class="card border-right">
<div class="card-body">
<div class="d-flex d-lg-flex d-md-block align-items-center">
<div>
<div class="d-inline-flex align-items-center">
<h2 class="text-dark mb-1 font-weight-medium">[[ hosts.length]]</h2>
<!-- <span
class="badge bg-primary font-12 text-white font-weight-medium badge-pill ml-2 d-lg-block d-md-none">+18.33%</span> -->
</div>
<h6 class="font-weight-normal mb-0 w-100 text-truncate">Server
disponibili</h6>
</div>
<div class="ml-auto mt-md-3 mt-lg-0">
<span class="opacity-7 text-muted"><i data-feather="archive"></i></span>
</div>
</div>
</div>
</div>
<div class="card border-right margin-left-right">
<div class="card-body">
<div class="d-flex d-lg-flex d-md-block align-items-center">
<div>
<h2 class="text-dark mb-1 font-weight-medium">[[
connectedUsers()
]]</h2>
<h6 class="font-weight-normal mb-0 w-100 text-truncate">
Persone connesse
</h6>
</div>
<div class="ml-auto mt-md-3 mt-lg-0">
<span class="opacity-7 text-muted"><i data-feather="users"></i></span>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-body">
<div class="d-flex d-lg-flex d-md-block align-items-center">
<div>
<h2 class="text-dark mb-1 font-weight-medium">[[ totalBandwidth() ]]</h2>
<h6 class="font-weight-normal mb-0 w-100 text-truncate">Banda disponibile
</h6>
</div>
<div class="ml-auto mt-md-3 mt-lg-0">
<span class="opacity-7 text-muted"><i data-feather="globe"></i></span>
</div>
</div>
</div>
</div>
</div>
<div class="row" style="margin-top: -15px;">
<div class="col-12">
{% include common_table.html %}
</div>
</div>
</div>
</div>
{% include footer.html %}
</div>
</body>
</html>