aboutsummaryrefslogtreecommitdiffstats
path: root/docs/_layouts/ebook/pdf_header.html
blob: ef49641012e962e66139bb3ee1e7b9763025cd09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "./page.html" %}
{% block body %}
<div id="pdf-header" class="pdf-header">
    <span class="header-left">IoT.Bzh</span>
    <span class="header-right">{{ config.title }}</span>
</div>

<!-- Allow to hide header for some pages using hidepageheaders config in book.json -->
<script>
    if (({% for num in config.hidepageheaders %}{{ page.num }} == {{ num }} || {% endfor %}false)) document.getElementById('pdf-header').style.display = 'none'
</script>

{% endblock %}