diff options
Diffstat (limited to 'templates/page.html')
-rw-r--r-- | templates/page.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/page.html b/templates/page.html new file mode 100644 index 0000000..370eaf0 --- /dev/null +++ b/templates/page.html @@ -0,0 +1,15 @@ +{% extends "index.html" %} + +{% block content %} + + <a class="g-Link" href="/"> + ← Retour à l’accueil + </a> + + <div class="g-Recipe"> + {{ page.content | safe }} + </div> + + <script src="/main.js"></script> + +{% endblock content %} |