summaryrefslogtreecommitdiffstats
path: root/templates/includes/book/progress.html
blob: 176c95ffcc80c4551b211b90d8c059c04847568e (plain)
1
2
3
4
5
6
7
8
9
10
<div class="book-progress">
    <div class="bar">
        <div class="inner" style="width: {{ progress.percent }}%;min-width: {{ progress.prevPercent }}%;"></div>
    </div>
    <div class="chapters">
    {% for p in progress.chapters %}
        <a href="{{ basePath }}/{{ p.path|mdLink }}" title="{{ p.title }}" class="chapter {% if p.done %}done{% endif %} {% if p.level.length == 1 %}new-chapter{% endif %}" data-progress="{{ p.level }}" style="left: {{ p.percent }}%;"></a>
    {% endfor %}
    </div>
</div>