When you have a(n inline) pdf in your CDA, this is rendered using an iframe. Below iframe nothing is rendered anymore although the footer should have been there. This is extra inconvenient when the pdf is in section that is followed by other sections.
The solution is to not write <iframe .../> but rather have a separate closing tag. To force that, you may put a space in between so <iframe ...> </iframe>. This space does not have any visual impact on the rendering other than making the following html reappear.
When you have a(n inline) pdf in your CDA, this is rendered using an iframe. Below iframe nothing is rendered anymore although the footer should have been there. This is extra inconvenient when the pdf is in section that is followed by other sections.
The solution is to not write
<iframe .../>
but rather have a separate closing tag. To force that, you may put a space in between so<iframe ...> </iframe>
. This space does not have any visual impact on the rendering other than making the following html reappear.Reference: https://github.com/jekyll/jekyll/issues/346.