You are here

pdf-reader.html.twig in PDF Reader 8

<div class = 'pdf-reader'>
    {% if download_link and top%}
        <div class ="download-pdf link-pdf {{top}}">
            <a href = "{{ download_link }}" download>{{ 'Click here to download'|t }}</a>
        </div>
    {% endif %}
    <div class = "pdf-reader-{{  service }}">
        <iframe id="pdf_reader" src="{{file_url}}" width="{{width}}" height="{{height}}" scrolling="no" style="border: none;">
        </iframe>
    </div>
    {% if download_link and bottom%}
        <div class ="download-pdf link-pdf {{bottom}}">
            <a href = "{{ download_link }}" download>{{ 'Click here to download'|t }}</a>
        </div>
    {% endif %}
</div>



File

templates/pdf-reader.html.twig
View source
  1. <div class = 'pdf-reader'>
  2. {% if download_link and top%}
  3. <div class ="download-pdf link-pdf {{top}}">
  4. <a href = "{{ download_link }}" download>{{ 'Click here to download'|t }}</a>
  5. </div>
  6. {% endif %}
  7. <div class = "pdf-reader-{{ service }}">
  8. <iframe id="pdf_reader" src="{{file_url}}" width="{{width}}" height="{{height}}" scrolling="no" style="border: none;">
  9. </iframe>
  10. </div>
  11. {% if download_link and bottom%}
  12. <div class ="download-pdf link-pdf {{bottom}}">
  13. <a href = "{{ download_link }}" download>{{ 'Click here to download'|t }}</a>
  14. </div>
  15. {% endif %}
  16. </div>