23 lines
347 B
HTML
23 lines
347 B
HTML
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
|
|
|
|
{% include head.html %}
|
|
|
|
<body>
|
|
|
|
{% include navbar.html %}
|
|
|
|
{% if page.no_header %}
|
|
{% include header.html %}
|
|
{% endif %}
|
|
|
|
{{ content }}
|
|
|
|
{% include google_analytics.html %}
|
|
|
|
{% include footer.html %}
|
|
|
|
</body>
|
|
|
|
</html>
|