summaryrefslogtreecommitdiffstats
path: root/templates/includes/book/summary.html
blob: 8b2473e803e299badde02d2558eac8b6584845a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<div class="book-summary">
    <ul class="summary">
    <li>
        <a href="/book/{{ book.attributes.full_name }}/README.md">Introduction</a>
    </li>
    <li>
        <a href="https://github.com/{{ book.attributes.owner.login }}" target="blank">About the author</a>
    </li>
    <li class="divider"></li>
    {% for item in summary.chapters %}
        <li>
            <a href="/book/{{ book.attributes.full_name }}/{{ item.chapter.path }}">{{ item.chapter.title }}</a>
            {% if item.articles.length > 0 %}
            <ul class="articles">
            {% for article in item.articles %}
                <li>
                    <a href="/book/{{ book.attributes.full_name }}/{{ article.path }}">{{ article.title }}</a>
                </li>
            {% endfor %}
            </ul>
            {% endif %}
        </li>
    {% endfor %}
    </ul>
</div>