summaryrefslogtreecommitdiffstats
path: root/ll-database-binding/conf.d/app-templates/docs/_layouts/ebook/pdf_footer.html
diff options
context:
space:
mode:
Diffstat (limited to 'll-database-binding/conf.d/app-templates/docs/_layouts/ebook/pdf_footer.html')
-rw-r--r--ll-database-binding/conf.d/app-templates/docs/_layouts/ebook/pdf_footer.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/ll-database-binding/conf.d/app-templates/docs/_layouts/ebook/pdf_footer.html b/ll-database-binding/conf.d/app-templates/docs/_layouts/ebook/pdf_footer.html
new file mode 100644
index 0000000..679e562
--- /dev/null
+++ b/ll-database-binding/conf.d/app-templates/docs/_layouts/ebook/pdf_footer.html
@@ -0,0 +1,13 @@
+{% extends "./page.html" %}
+{% block body %}
+<div id="pdf-footer" class="pdf-footer">
+ <span class="footer-left">Version {{ config.version }}</span>
+ <span class="footer-right">{{ page.num }}</span>
+ <span class="footer-center">{{ config.published }}</span>
+</div>
+
+<!-- Allow to hide footer for some pages using hidepagefooters config in book.json -->
+<script>
+ if (({% for num in config.hidepagefooters %}{{ page.num }} == {{ num }} || {% endfor %}false)) document.getElementById('pdf-footer').style.display = 'none'
+</script>
+{% endblock %}