forked from wp-cli/wp-cli.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoc.html
More file actions
24 lines (17 loc) · 687 Bytes
/
doc.html
File metadata and controls
24 lines (17 loc) · 687 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
{% include header.html %}
{% capture page_url %}{{ page.url | remove:'index.html' }}{% endcapture %}
<span style="float:right;"><a href="https://github.com/wp-cli/wp-cli.github.com/edit/master/{{page.path}}">Edit</a></span>
{% if page_url != '/docs/' %}
<small><a href="/docs/">Docs</a> » {{ page.category }}</small>
{% endif %}
<h1>{{ page.title }}</h1>
{% if page.quick_links %}
<p><small>Quick links:
{% for quick_link in page.quick_links %}
{% capture link %}{{ quick_link | slugify }}{% endcapture %}
<a href="#{{link}}">{{quick_link}}</a> {% if forloop.last == false %}|{% endif %}
{% endfor %}
</small></p>
{% endif %}
{{ content }}
{% include footer.html %}