Heuzef - Les notes excentriques d'un bidouilleur.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 lines
417 B

  1. {% extends "base.html" %}
  2. {% block head %}
  3. {{ super() }}
  4. <meta name="description" content="{{ page.summary|striptags }}">
  5. {% endblock %}
  6. {% block title %}
  7. {{ page.title|striptags }} {{ super() }}
  8. {% endblock %}
  9. {% block page_header %}
  10. {{ page.title }}
  11. {% endblock %}
  12. {% block content %}
  13. <article class="article">
  14. <div class="content">
  15. {{ page.content }}
  16. </div>
  17. </article>
  18. {% endblock %}