Shortcode para renderizar html a pelo, mientras mejoramos el sistema
This commit is contained in:
parent
e4ebd01164
commit
2bd8c46431
17
README.md
17
README.md
|
@ -33,3 +33,20 @@ Los ficheros estáticos están en la carpeta `static`, se copian tal cual a la
|
|||
carpeta `public`.
|
||||
|
||||
Más información: https://gohugo.io/documentation/
|
||||
|
||||
|
||||
## Shortcodes
|
||||
|
||||
Estos son los shortcodes definidos para el hackmeeting:
|
||||
|
||||
### rawHTML
|
||||
|
||||
Renderiza el contenido del shortcode sin procesar, por lo que se puede meter html arbitrario.
|
||||
|
||||
Ejemplo:
|
||||
|
||||
{{< rawHTML >}}
|
||||
<table>
|
||||
<tr><td>Una tabla</td></tr>
|
||||
</table>
|
||||
{{< /rawHTML >}}
|
||||
|
|
|
@ -14,13 +14,11 @@ listas.
|
|||
[Materiales necesarios](/2019/MaterialesNecesarios)
|
||||
|
||||
|
||||
## Viernes
|
||||
## Viernes 20
|
||||
|
||||
{{< rawHTML >}}
|
||||
<table class="wikitable">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row" colspan="4"> VIERNES 20 </th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="col"></th>
|
||||
<th scope="col"> ____Gizartetxe____ </th>
|
||||
|
@ -101,15 +99,13 @@ listas.
|
|||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
{{< /rawHTML >}}
|
||||
|
||||
## Sábado 21
|
||||
|
||||
## Sábado
|
||||
|
||||
{{< rawHTML >}}
|
||||
<table class="wikitable">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row" colspan="4"> SABADO 21 </th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="col"> </th>
|
||||
<th scope="col"> ____Gizartetxe____ </th>
|
||||
|
@ -201,15 +197,14 @@ listas.
|
|||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
{{< /rawHTML >}}
|
||||
|
||||
|
||||
## Domingo
|
||||
## Domingo 22
|
||||
|
||||
{{< rawHTML >}}
|
||||
<table class="wikitable">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row" colspan="4"> DOMINGO 21 </th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="col"> </th>
|
||||
<th scope="col"> ____Gizartetxe____ </th>
|
||||
|
@ -275,3 +270,4 @@ listas.
|
|||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
{{< /rawHTML >}}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
{{ .Inner }}
|
Loading…
Reference in New Issue