diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/contact.html | 9 | ||||
-rw-r--r-- | templates/index.html | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/templates/contact.html b/templates/contact.html new file mode 100644 index 0000000..1359a16 --- /dev/null +++ b/templates/contact.html @@ -0,0 +1,9 @@ +{% extends "index.html" %} +{% load email %} + +{% block title %}Contacter – {% endblock %} + +{% block body %} + <h3>Contacter</h3> + <p>Pour contacter l’administrateur du service, envoyez un mail à l’adresse suivante :<br/>{{ email|format_email }}.</p> +{% endblock %} diff --git a/templates/index.html b/templates/index.html index f4b105c..a685031 100644 --- a/templates/index.html +++ b/templates/index.html @@ -23,7 +23,7 @@ {% endblock %} </div> <footer> - <p>(c) 2017 – Alban Gruin<br /> + <p>(c) 2017 – Alban Gruin – <a href="{% url "contact" %}">contacter<br /> Design inspiré par <a href="https://bestmotherfucking.website/">https://bestmotherfucking.website/</a></p> </footer> </body> |