blob: 6bb4221dce44e5afcf7c374166a78a09e36cb8c4 (
plain) (
blame)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Debugging: {{ site.title || "Mystery Site" }}</title>
<link rel="stylesheet" href="@root/debug.css">
<link rel="stylesheet" href="@root/pygments.css">
</head>
<body>
<div id="wrap">
<h1>
{$ node $}
{% if node.parent %}
<a href="{$ node.parent.url $}">↑</a>
{% endif %}
</h1>
{% if inc.menu %}
<div class="menu">
{{ inc.menu }}
</div>
{% endif %}
<button class="button">Automenu</button>
<div class="panel">
{{ automenu }}
</div>
<button class="button">Node Children</button>
<div class="panel">
<ul>
{% for child in node.children %}
<li><a href="{$ child.url $}">{$ child $}</a></li>
{% empty %}
<li>None.</li>
{% endfor %}
</ul>
</div>
<button class="button">Node Meta</button>
<div class="panel">
<pre>{{ node.meta|pprint|pygmentize('python') }}</pre>
</div>
<button class="button">Node Text</button>
<div class="panel">
<pre>{{ node.text.strip()|escape }}</pre>
</div>
<button class="button">Node HTML</button>
<div class="panel">
<pre>{{ node.html|escape }}</pre>
</div>
<button class="button">Page Data</button>
<div class="panel last">
<pre>{{ context.data.stack|index(2)|pprint|pygmentize('python') }}</pre>
</div>
</div>
<script>
var buttons = document.getElementsByClassName("button");
for (let i = 0; i < buttons.length; i++) {
buttons[i].addEventListener("click", function() {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.maxHeight) {
panel.style.maxHeight = null;
} else {
panel.style.maxHeight = panel.scrollHeight + "px";
}
});
}
</script>
</body>
</html>
|