templates/Admin/Widget/pdf_header.html.twig line 1

Open in your IDE?
  1. {% set tdn=" padding: 5px;line-height: 1.42857143; vertical-align: top;" %}
  2. {% set tdb="padding: 10px; border-top: 1px solid #f4f4f4; line-height: 1.42857143; vertical-align: top;" %}
  3. {% set tdbr= tdb~" text-align: right;" %}
  4. {% set trth= " background-color: #f9f9f9;" %}
  5. {% set tablen=" width: 100%; max-width: 100%; margin-bottom: 20px; border-spacing : 0; border-collapse : collapse; color: #222; font-size: 12px;" %}
  6. <page_header>
  7.     <table style="{{ tablen }}">
  8.         <tr>
  9.             <td style="width: 100%; border-bottom: 1px solid #009bdf; text-align: center;"><img style=" height: 70px" src="{{ absolute_url(asset('Admin/images/logo.jpg')) }}"> </td>
  10.         </tr>
  11.         <tr>
  12.             <td style="font-size: 14px; text-align: center;"><i>
  13.                     {% if parms['sitting_institute_website'] is not empty %}
  14.                         {{ parms['sitting_institute_website'] }}
  15.                     {% endif %}
  16.                     {% if parms['sitting_institute_phone1'] is not empty %}
  17.                         - {{ parms['sitting_institute_phone1'] }}
  18.                     {% endif %}
  19.                     {% if parms['sitting_institute_phone2'] is not empty %}
  20.                         - {{ parms['sitting_institute_phone2'] }}
  21.                     {% endif %}
  22.                     {% if parms['sitting_institute_email'] is not empty %}
  23.                         - {{ parms['sitting_institute_email'] }}
  24.                     {% endif %}
  25.                 </i>
  26.             </td>
  27.         </tr>
  28.     </table>
  29. </page_header>