blob: c101c0633070cbaaf0d34746c8364c16f7a61709 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{% include header.html %}
{% if page.version and page.version != site.latest %}
{% if page.version == "tip" %}
{% include tip_version.html %}
{% else %}
{% include old_version.html %}
{% endif %}
{% endif %}
{{ content }}
{% include footer_refman.html %}
|