{% if page.url != "/" %}
Lsyncd - {{ page.title }}
{% else %}
{{ page.title }}
{% endif %}
Note, this manual is for upcoming Lsyncd 3 and currently in development.
{% for section in site.data.docs %}
{{section.title}}
{% for doc in section.docs %} {% assign doc_url = doc %} {% if doc_url != "/" %} {% assign doc_url = doc | append: "/" %} {% endif %} {% assign p = site.pages | where:"url", doc_url | first %} {% if page.tab %} {% assign tab = page.tab | prepend:"/" | append:"/" %} {% endif %} {% if p.short %} {% assign title = p.short %} {% else %} {% assign title = p.title %} {% endif %}
{{ title }}
{% endfor %}
{% endfor %}
{{ page.title }}
{{ content }} {% assign docs = site.data.docs | map: 'docs' | join: ',' | split: ',' %} {% for doc in docs %} {% assign doc_url = doc %} {% if doc_url != "/" %} {% assign doc_url = doc_url | append: "/" %} {% endif %} {% if doc_url == page.url %}
{% if forloop.first %} {% else %} {% assign previous = forloop.index0 | minus: 1 %} {% assign previous_page = docs[previous] %}
{% endif %} {% if forloop.last %} {% else %} {% assign next = forloop.index0 | plus: 1 %} {% assign next_page = docs[next] %}
{% endif %}
{% break %} {% endif %} {% endfor %}