forked from quoid/userscripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 982 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (25 loc) · 982 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
{% include "meta.html" %}
{%- if development %}
<link rel="stylesheet" href="./_main.css">
{% else %}
<link inline rel="stylesheet" href="../output/_main.css">
{% endif -%}
</head>
<body>
<main>
<img class="icon" inline src="./img/icon.png" alt="Userscripts App Icon">
<div class="logo">
<img inline src="./img/logo.svg" alt="Userscripts Logo">
<span>v0.1</span>
</div>
<p>You can turn on the Userscripts iOS Safari extension in Settings. <a href="https://github.com/quoid/userscripts#userscripts-safari">Read the docs.</a></p>
<button id="set_directory">Set Userscripts Directory</button>
<div class="current">CURRENT DIRECTORY:</div>
<div id="directory">init</div>
</main>
<script inline src="./js/scripts.js"></script>
</body>
</html>