diff --git a/README.md b/README.md index 4394f59..a2fdc72 100644 --- a/README.md +++ b/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 >}} + + +
Una tabla
+ {{< /rawHTML >}} diff --git a/content/2019/nodos/_index.md b/content/2019/nodos/_index.md index c4f7eb7..c59b650 100644 --- a/content/2019/nodos/_index.md +++ b/content/2019/nodos/_index.md @@ -14,13 +14,11 @@ listas. [Materiales necesarios](/2019/MaterialesNecesarios) -## Viernes +## Viernes 20 +{{< rawHTML >}} - - - @@ -101,15 +99,13 @@ listas.
VIERNES 20
____Gizartetxe____
+{{< /rawHTML >}} +## Sábado 21 -## Sábado - +{{< rawHTML >}} - - - @@ -201,15 +197,14 @@ listas.
SABADO 21
____Gizartetxe____
+{{< /rawHTML >}} -## Domingo +## Domingo 22 +{{< rawHTML >}} - - - @@ -275,3 +270,4 @@ listas.
DOMINGO 21
____Gizartetxe____
+{{< /rawHTML >}} diff --git a/layouts/shortcodes/rawHTML.html b/layouts/shortcodes/rawHTML.html new file mode 100644 index 0000000..59448a1 --- /dev/null +++ b/layouts/shortcodes/rawHTML.html @@ -0,0 +1 @@ +{{ .Inner }}