blob: 762436860f7a12bf6ff73c9dc072023865990e0e (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>{{title}}</title>
</head>
<body>
<main>
<div class="prompt">[<span data-Name>user</span>@<span>home</span> ~]$ tree</div>
<div class="tree">
<h1>.</h1>
<ul id="list">
<li><h1>[error]</h1></li>
</ul>
</div>
<div class="prompt">[<span data-Name>user</span>@<span>home</span> ~]$ ddg</div>
<form action="https://duckduckgo.com/" method="GET" autocomplete="off">
<h1>{{ search_msg }}</h1>
<textarea type="text" name="q" id="search" wrap="hard" autofocus></textarea>
</form>
</main>
</body>
</html>
<script type="text/javascript">
const Config = {
name: "{{name}}",
scale: 1,
Links: [
{% for key, value in bookmarks.items() %}
[
"{{key}}",
[
{% for link_name, url in value.items() %}
["{{link_name}}", "{{url}}"]
{% if not loop.last %}
,
{% endif %}
{% endfor %}
]
]
{% if not loop.last %}
,
{% endif %}
{% endfor %}
]
}
</script>
<script src="script/script.js"></script>
|