abemedia / jekyll-pdf

Create PDFs from Jekyll pages & documents.
http://abemedia.co.uk/jekyll-pdf/
GNU General Public License v3.0
104 stars 35 forks source link

Is there a way to create a single PDF out of all pages ? #16

Closed sandrobilbeisi closed 4 years ago

sandrobilbeisi commented 6 years ago

Is there a way to create a single PDF out of all pages ?

abemedia commented 4 years ago

Yes there is. Just create a single template that gets all the posts e.g.

{% for post in site.posts %}
<!-- post template here -->
{% endfor %}

You can also do this for HTML pages using the variable {{ site.html_pages }}.