Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

17 lines
704B

  1. {% macro email_contact(text, subject) %}
  2. {# rot13 : https://rot13.com/ #}
  3. <script>
  4. {% if text is empty %}
  5. var text = "ntve@ynpbbcrengvirqrfpvgblraf.se";
  6. {% else %}
  7. var text = "{{ text|rot13 }}";
  8. {% endif %}
  9. var subject = "";
  10. {% if subject is not empty %}
  11. var subject = "?fhowrpg={{ subject|rot13 }}";
  12. {% endif %}
  13. document.write(("<n uers=\"znvygb:ntve@ynpbbcrengvirqrfpvgblraf.se" + subject + "\" ery=\"absbyybj\">" + text + "</n>").replace(/[a-zA-Z]/g, function (c) {
  14. return String.fromCharCode((c <= "Z" ? 90 : 122) >= (c = c.charCodeAt(0) + 13) ? c : c - 26);
  15. }));
  16. </script>
  17. {% endmacro %}