diff --git a/assets/templates/alert.html b/assets/templates/alert.html
index b520708..1ef923d 100644
--- a/assets/templates/alert.html
+++ b/assets/templates/alert.html
@@ -1,7 +1,9 @@
-
-
- {% for item in results %}
-
-
+{%- raw -%}
+
+
+ {% for item in results %}
+
+
- {{ item.description }}
-
- {% endfor %}
-
-
+ {{ item.description }}
+
+ {% endfor %}
+
+
+{%- endraw -%}
diff --git a/env.js b/env.js
index b38f2f9..711fa4f 100644
--- a/env.js
+++ b/env.js
@@ -10,3 +10,20 @@ window.env = {
window.site = {
"i18n": {{ site.i18n | jsonify }}
}
+
+{%- comment -%}
+ Para agregar plantillas que se procesan con JS, las agregamos en
+ Liquid dentro de assets/templates/ y luego las importamos acá, de forma
+ que estén disponibles para JS sin tener que descargarlas.
+
+ Es importante que la plantilla esté envuelta por el tag `{% raw %}`,
+ para que no sea procesado en el momento de generar env.js, sino en el
+ navegador.
+{%- endcomment -%}
+{%- capture alert %}{% include_relative assets/templates/alert.html %}{% endcapture -%}
+{%- capture results %}{% include_relative assets/templates/results.html %}{% endcapture -%}
+
+window.templates = {
+ "alert": {{ alert | markdownify }},
+ "results": {{ results | markdownify }},
+}