123456789101112131415161718192021222324252627282930313233343536373839 |
- <!-- BEGIN: main -->
- <table style="width:100%;">
- <tr>
- <td><img src="../../img/logopdf.png" width="40mm"></td>
- <td align="right">Calendario Escolar<br>
- Facultad de Ingeniería<br>
- {PERIODO}</td>
- </tr>
- </table>
- <table class="centrado-block main-table" style="overflow: wrap; width: 100%">
- <thead>
- <tr>
- <th style="width:16%">Mes</th>
- <!-- BEGIN: dia --><th style="width:50px">{DIA}</th><!-- END: dia -->
- <th>Eventos</th>
- </tr>
- </thead>
- <tbody>
- <!-- BEGIN: mes -->
- <tr style='page-break-inside: avoid'>
- <td class="border mes centrado">{MES}</td>
- <td colspan="7">
- <table id="tabla_mes" cellpadding="0" cellspacing="0">
- <!-- BEGIN: renglon -->
- <tr>
- <!-- BEGIN: dia -->
- <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>
- <!-- END: dia -->
- </tr><!-- END: renglon -->
- </table>
- </td>
- <td class="border eventos_list" valign="top">
- <!-- BEGIN: evento --><p class="evento"><span class="icono">{ICO}</span> {NOMBRE}</p><!-- END: evento -->
- </td>
- </tr><!-- END: mes -->
- </tbody>
- </table>
- <!-- END: main -->
|