forked from chatmail/provider-db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfallback.html
27 lines (25 loc) · 809 Bytes
/
fallback.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
---
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Fallback - Provider Overview</title>
</head>
<body>
<a href="/">go back to the normal Overview</a><br>
<ul>
{% for provider in site.providers %}
<li>
<b>
<a href="{{ provider.url }}">{{ provider.title }}</a> [ {{ provider.domains | join: "; " }} ]<br>
</b>
[ {{ provider.status }} on {{ provider.last_checked }} ]<br>
[ {{ provider.credentials | join: " or " }} ]
</li>
{% endfor %}
</ul>
</body>
</html>