21 lines
502 B
HTML
21 lines
502 B
HTML
{% assign base = '' %}
|
|
{% assign depth = page.url | split: '/' | size | minus: 1 %}
|
|
{% if depth <= 1 %}{% assign base = '..' %}
|
|
{% elsif depth == 2 %}{% assign base = '../..' %}
|
|
{% elsif depth == 3 %}{% assign base = '../../..' %}
|
|
{% elsif depth == 4 %}{% assign base = '../../../..' %}
|
|
{% endif %}
|
|
{% include top.html %}
|
|
|
|
<body class="wrap">
|
|
{% include header.html %}
|
|
|
|
{{ content }}
|
|
|
|
{% include footer.html %}
|
|
{% include anchor_links.html %}
|
|
{% include analytics.html %}
|
|
|
|
</body>
|
|
</html>
|