123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!DOCTYPE html>
- <html{{ html_attributes }}>
- <head>
- <title>{{ title }}</title>
- {{ page.head }}
- <base href="{{ base_url }}" />
- <link type="text/css" rel="stylesheet" href="misc/print.css" />
- </head>
- <body>
-
- {% for i in 1..depth-1 if depth > 1 %}
- <div class="section-{{ i }}">
- {% endfor %}
- {{ contents }}
- {% for i in 1..depth-1 if depth > 1 %}
- </div>
- {% endfor %}
- </body>
- </html>
|