16 lines
274 B
HTML
16 lines
274 B
HTML
|
<!DOCTYPE html>
|
||
|
<html id="{{ page.cid }}" lang="en" class="{{ page.class }}">
|
||
|
|
||
|
{% include head.html %}
|
||
|
|
||
|
<body>
|
||
|
{% include header.html %}
|
||
|
|
||
|
{{ content }}
|
||
|
|
||
|
{% include footer.html %}
|
||
|
|
||
|
{% include footer-scripts.html %}
|
||
|
</body>
|
||
|
</html>
|