forked from yarnpkg/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path-debug.html
More file actions
29 lines (22 loc) · 671 Bytes
/
-debug.html
File metadata and controls
29 lines (22 loc) · 671 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
26
27
28
29
---
layout: default
---
<div class="container m-t-2">
{% for page in site.pages %}
<p><strong><a href="{{page.url}}">{{page.path}}</a> ({{page.id}})</strong></p>
{% if page.layout == "guide" %}
{% include debug/toc.html content=page.content forceRender=true %}
{% endif %}
{% include debug/todo.html content=page.content forceRender=true %}
<hr>
{% endfor %}
<h2>Redirects</h2>
<pre><code>{% include_relative _redirects %}</code></pre>
<h3>Pages</h2>
{% assign urls_sorted = site.pages | map: "url" | sort %}
<ul>
{% for url in urls_sorted %}
<li><a href="{{url}}">{{url}}</a></li>
{% endfor %}
</ul>
</div>