15 lines
315 B
Plaintext
15 lines
315 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="{{ page.lang }}">
|
|
{{ partial('partial/head') }}
|
|
<body>
|
|
<div id="container">
|
|
{% if page.source != 'index.md' %}
|
|
{{ partial('partial/header') }}
|
|
{% endif %}
|
|
{{ body }}
|
|
{{ partial('partial/footer') }}
|
|
</div>
|
|
{{ partial('partial/after_footer') }}
|
|
</body>
|
|
</html>
|