-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
42 lines (39 loc) · 1.5 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
---
layout: default
title: Home
---
<section>
<p>
Welcome! This website checks the status of select sites within the GNU Social network. Currently, only a handful of instances are included (preferably those that support Qvitter), but <a href="{{ site.author.url }}">let me know</a> if you want your instance added here and I'll consider it.
</p>
<p>
What is GNU Social? Why not read about it <a href="https://karp.id.au/social/user/what_is_gnu_social.html">here</a>!
</p>
</section>
<div class="message">
<strong>Heads up!</strong> The results that you see on this page might not be accurate. Because HTTP requests are made locally, sometimes it might only be your internet that's acting up.
</div>
<div class="instance-status" ng-controller="InstanceStatusController">
<table>
<thead>
<tr>
<th class="col-instance-name">Instance</th>
<th class="col-instance-version">GS Version</th>
<th class="col-instance-status">Status</th>
</tr>
</thead>
<tbody>
<tr class="instance" ng-repeat="instance in instances">
<td class="instance-name">
<a href="{% raw %}{{ instance.url }}{% endraw %}" target="_blank">{% raw %}{{ instance.name }}{% endraw %}</a>
</td>
<td class="instance-version">
{% raw %}{{ instance.version }}{% endraw %}
</td>
<td class="instance-status" ng-class="instance.ngClass">
{% raw %}{{ instance.status }}{% endraw %}
</td>
</tr>
</tbody>
</table>
</div>