-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (31 loc) · 1.4 KB
/
index.html
File metadata and controls
35 lines (31 loc) · 1.4 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes" />
<title>Solid Pastebin</title>
<link href='https://fonts.googleapis.com/css?family=Roboto:400,300' rel='stylesheet' type='text/css' />
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="img/png" href="favicon.png" />
<script src="https://solid.github.io/releases/rdflib.js/rdflib-0.12.2.min.js"></script>
<script src="https://solid.github.io/releases/solid.js/solid-client-lite-0.22.5.min.js"></script>
</head>
<body>
<div class="content center-text hidden" id="view">
<h1 id="view-title"></h1>
<br>
<div id="view-body"></div>
</div>
<div class="content center-text hidden" id="edit">
<input type="text" id="edit-title" class="block" placeholder="Title...">
<br>
<textarea id="edit-body" class="block" placeholder="Paste text here..."></textarea>
<br>
<button id="submit" class="btn">Publish</button>
</div>
<footer>
<div class="center-text"><a href="https://github.com/solid/solid-tutorial-pastebin/" target="_blank">GitHub Page</a> | <a href="https://github.com/solid/solid-tutorial-pastebin/issues" target="_blank">GitHub Issues</a></div>
</footer>
<script src="app/app.js"></script>
</body>
</html>