-
Notifications
You must be signed in to change notification settings - Fork 307
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (45 loc) · 1.45 KB
/
index.html
File metadata and controls
54 lines (45 loc) · 1.45 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" href="/common/css/solid.css">
</head>
<body class="index-page">
<div class="header">
<div class="header-left">
{{#if serverLogo}}
<img class="logo-img" src="{{serverLogo}}" />
{{/if}}
</div>
<div class="header-center">
<h1 class="title">Welcome to Solid prototype</h1>
</div>
<div class="header-right" id="loginStatusArea"></div>
</div>
<div class="container" id="prototype">
<h3 style="display:none" id="loggedIn" class="webId"></h3>
<div class="content">
<p class="lead">
This is a prototype implementation of a Solid server.
It is a fully functional server, but there are no security or stability guarantees.
If you have not already done so, please register.
</p>
<section>
<h2>Server info</h2>
<dl>
<dt>Name</dt>
<dd>{{serverName}}</dd>
{{#if serverDescription}}
<dt>Description</dt>
<dd>{{serverDescription}}</dd>
{{/if}}
<dt>Details</dt>
<dd>Running on <a href="https://github.com/solid/node-solid-server/releases/tag/v{{serverVersion}}">Node Solid Server {{serverVersion}}</a></dd>
</dl>
</section>
</div> <!-- end content-->
</div> <!-- end container-->
<script src="/mashlib.js"></script>
<script src="/common/js/index-buttons.mjs"></script>
</body>
</html>