summaryrefslogtreecommitdiffstats
path: root/templates/includes/book/footer.html
blob: 1112b14a2a5864c1bc44f340c5936a78e91d69bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="page-footer">
    {% if _input == "README.md" %}
        <a href="{{ basePath }}/{{ progress.current.next.path|mdLink }}" class="navigation-link">Start</a>
    {% else %}
        {% if progress.current.next %}
            {% if progress.current.next.path %}
            <a href="{{ basePath }}/{{ progress.current.next.path|mdLink }}" class="navigation-link next">Next</a>
            {% else %}
            <div class="navigation-link coming-soon">Coming soon</div>
            {% endif %}
        {% else %}
        <div class="navigation-link finished">Finished!</div>
        {% endif %}
    {% endif %}
</div>