mirror of
https://github.com/zhigang1992/probot.github.io.git
synced 2026-01-12 22:49:53 +08:00
48 lines
1.4 KiB
HTML
48 lines
1.4 KiB
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
{% include nav.html %}
|
|
|
|
<div class="container-lg px-3 py-6">
|
|
<div class="d-flex flex-row gutter-spacious">
|
|
<div id="toc" class="col-3 py-6">
|
|
{% capture toc %}{% include toc.md %}{% endcapture %}
|
|
{{ toc | markdownify }}
|
|
</div>
|
|
<div class="col-9 markdown-body p-6">
|
|
{{ content }}
|
|
|
|
{% for doc in site.pages %}
|
|
{% if page.next == doc.path %}
|
|
{% assign next = doc %}
|
|
{% endif %}
|
|
|
|
{% if doc.next == page.path %}
|
|
{% assign previous = doc %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
<div class="d-flex border-bottom border-gray-light mt-6 mb-3 py-3 text-gray-light">
|
|
<div class="col-6">
|
|
{% if previous %}
|
|
{% octicon chevron-left class:"v-align-text-bottom" %}
|
|
<a href="{{ previous.url }}">{{ previous.title }}</a>
|
|
{% endif %}
|
|
</div>
|
|
<div class="col-6 text-right">
|
|
{% if next %}
|
|
<a href="{{ next.url }}">{{ next.title }}</a>
|
|
{% octicon chevron-right class:"v-align-text-bottom" %}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
<p class="alt-text-small text-gray-light">
|
|
Find a mistake or want to help improve this documentation?
|
|
<a href="https://github.com/{{ site.github.repository_nwo }}/edit/{{ site.branch }}/{{ page.path }}">Suggest changes on GitHub</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|