diff options
author | Gareth Rees <gareth@mysociety.org> | 2015-01-14 10:18:09 +0000 |
---|---|---|
committer | Gareth Rees <gareth@mysociety.org> | 2015-04-07 16:23:02 +0100 |
commit | 2af30c8d657b529f938f79c940ab948c0a2652bb (patch) | |
tree | 193d436f502305ad02fe7f0c8ab05bcd393ec0a2 | |
parent | 21e63e3192878ac72642c48cd34bd230cb23e214 (diff) |
Add Spanish _includes
-rw-r--r-- | _includes/es/feedback_form.html | 32 | ||||
-rw-r--r-- | _includes/es/image.html | 4 |
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> |