aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--_includes/es/feedback_form.html32
-rw-r--r--_includes/es/image.html4
2 files changed, 36 insertions, 0 deletions
diff --git a/_includes/es/feedback_form.html b/_includes/es/feedback_form.html
new file mode 100644
index 000000000..5e0d2db4b
--- /dev/null
+++ b/_includes/es/feedback_form.html
@@ -0,0 +1,32 @@
+ <meta charset="utf-8">
+<form id="feedback_form">
+ <h3>Miniencuesta</h3>
+ <div id="form_elements">
+ <p>¿Ha encontrado lo que buscaba en esta página?</p>
+ <ul>
+ <li>
+ <label>
+ <input id="found_yes" name="found" type="radio" class="field radio" value="Yes" tabindex="1" onclick="$('#feedback-further-details').hide()"/>Sí
+ </label>
+ </li>
+ <li>
+ <label>
+ <input id="found_no" name="found" type="radio" class="field radio" value="No" tabindex="2" onclick="$('#feedback-further-details').show()"/>No
+ </label>
+ </li>
+ </ul>
+ <div id="feedback-further-details" hidden>
+ <p>
+ <label for="looking_for">¿Qué estaba buscando?</label><br/>
+ <input id="id_looking_for" name="looking_for" />
+ </p>
+ </div>
+ <input id="url" name="url" type="hidden" />
+ <input type="hidden" name="question_no" value="1">
+ </div>
+
+ <p id="result"></p>
+ <input type="submit" value="Enviar"/>
+ <a href="" id="hide_survey">ocultar</a>
+
+</form>
diff --git a/_includes/es/image.html b/_includes/es/image.html
new file mode 100644
index 000000000..46d187982
--- /dev/null
+++ b/_includes/es/image.html
@@ -0,0 +1,4 @@
+<figure>
+<img src="{{ include.url }}" alt="{{ include.description }}" width="{{ include.width }}"/>
+<figcaption>{{ include.description }}</figcaption>
+</figure>