Mercurial > piecrust2
comparison docs/templates/default.html @ 276:a5d21fac8e3f
docs: Change docs' templates after changes in Jinja's wrapper.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sun, 01 Mar 2015 18:00:41 -0800 |
parents | 26e59f837558 |
children | f51b69ad09ae |
comparison
equal
deleted
inserted
replaced
275:9cc91a3d6862 | 276:a5d21fac8e3f |
---|---|
43 <h1>{{ page.title }}</h1> | 43 <h1>{{ page.title }}</h1> |
44 </header> | 44 </header> |
45 {% endblock %} | 45 {% endblock %} |
46 {% block content %} | 46 {% block content %} |
47 <section class="container" id="content"> | 47 <section class="container" id="content"> |
48 {{ content|raw }} | 48 {{ content|safe }} |
49 </section> | 49 </section> |
50 {% endblock %} | 50 {% endblock %} |
51 <footer> | 51 <footer> |
52 <p>©2014 — {{ piecrust.branding|raw }}</p> | 52 <p>©2014 — {{ piecrust.branding|safe }}</p> |
53 </footer> | 53 </footer> |
54 </div> | 54 </div> |
55 {{ piecrust.debug_info|raw }} | 55 {{ piecrust.debug_info|safe }} |
56 <script src="{{ site.root }}js/piecrust.js"></script> | 56 <script src="{{ site.root }}js/piecrust.js"></script> |
57 {% if baker.is_baking %} | 57 {% if baker.is_baking %} |
58 {{ google.analytics("UA-3426592-10") }} | 58 {{ google.analytics("UA-3426592-10") }} |
59 {% endif %} | 59 {% endif %} |
60 </body> | 60 </body> |