permanent
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

object.html.twig
text/html

Download raw (506 bytes)

{% set base_plugin = parameters['base_plugin'] %}
{% set technique = parameters['technique'] %}
{% set pdf_file = parameters['pdf_file'] %}
{% set width = parameters['width'] %}
{% set height = parameters['height'] %}
{% set show_used_technique = parameters['show_used_technique'] %}

{% if show_used_technique %}
  [{{ technique }}]
{% endif %}

<object data="{{ pdf_file }}" type="application/pdf" width="{{ width }}" height="{{ height }}">
  alt : <a href="{{ pdf_file }}">{{ pdf_file }}</a>
</object>