formato.php 576 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * @var \yii\web\View $this
  4. * @var $titulo
  5. */
  6. setlocale(LC_ALL, 'es_ES');
  7. $basePath = \Yii::getAlias('@app') . "/web/";
  8. $camposTabla = 30;
  9. ?>
  10. <div class="container">
  11. <table width="100%" style="margin-bottom: 10px">
  12. <tr>
  13. <td width="220px" style="text-align: left">
  14. <img src="/img/logo_istai_lg.png" width="25%" height="15%">
  15. </td>
  16. <td width="480px" style="text-align: center">
  17. <h3>
  18. <?= $titulo ?>
  19. </h3>
  20. </td>
  21. <td width="220px" style="text-align: right">
  22. </td>
  23. </tr>
  24. </table>
  25. </div>