calendario.tpl.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!-- BEGIN: main -->
  2. <table style="width:100%;">
  3. <tr>
  4. <td><img src="../../img/logopdf.png" width="40mm"></td>
  5. <td align="right">Calendario Escolar<br>
  6. Facultad de Ingeniería<br>
  7. {PERIODO}</td>
  8. </tr>
  9. </table>
  10. <table class="centrado-block main-table" style="overflow: wrap; width: 100%">
  11. <thead>
  12. <tr>
  13. <th style="width:16%">Mes</th>
  14. <!-- BEGIN: dia --><th style="width:50px">{DIA}</th><!-- END: dia -->
  15. <th>Eventos</th>
  16. </tr>
  17. </thead>
  18. <tbody>
  19. <!-- BEGIN: mes -->
  20. <tr style='page-break-inside: avoid'>
  21. <td class="border mes centrado">{MES}</td>
  22. <td colspan="7">
  23. <table id="tabla_mes" cellpadding="0" cellspacing="0">
  24. <!-- BEGIN: renglon -->
  25. <tr>
  26. <!-- BEGIN: dia -->
  27. <td style="width:50px;" class="dia-cell <!-- BEGIN: border --> dia-border <!-- END: border --> <!-- BEGIN: empty --> bg-info <!-- END: empty -->">{DIA} <!-- BEGIN: ico --><span class="icono">{ICO} </span><!-- END: ico --></td>
  28. <!-- END: dia -->
  29. </tr><!-- END: renglon -->
  30. </table>
  31. </td>
  32. <td class="border eventos_list" valign="top">
  33. <!-- BEGIN: evento --><p class="evento"><span class="icono">{ICO}</span> {NOMBRE}</p><!-- END: evento -->
  34. </td>
  35. </tr><!-- END: mes -->
  36. </tbody>
  37. </table>
  38. <!-- END: main -->