39 lines
No EOL
942 B
Text
39 lines
No EOL
942 B
Text
<!DOCTYPE html>
|
|
{% if pageId %}
|
|
{%- capture idAttr %} id="{{ pageId }}"{% endcapture -%}
|
|
{% endif -%}
|
|
{% if pageClass %}
|
|
{%- capture classAttr %} class="{{ pageClass }}"{% endcapture -%}
|
|
{% endif -%}
|
|
{% if bodyClass %}
|
|
{%- capture bodyClassAttr %} class="{{ bodyClass }}"{% endcapture -%}
|
|
{% endif -%}
|
|
<html{{ idAttr }}{{ classAttr }} lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
{% block head %}
|
|
<title>
|
|
{{- hippie.titlePrefix -}}
|
|
{% block title %}{% endblock -%}
|
|
{{ hippie.titlePostfix -}}
|
|
</title>
|
|
|
|
{% block meta -%}
|
|
{% render 'hippie/partials/meta.liquid' %}
|
|
{% endblock -%}
|
|
{% block links -%}
|
|
{% render 'hippie/partials/links.liquid' %}
|
|
{% endblock -%}
|
|
{% block style -%}{% endblock -%}
|
|
{% endblock -%}
|
|
</head>
|
|
|
|
<body{{ bodyClassAttr }}>
|
|
{%- block body %}{% endblock -%}
|
|
{%- block assets %}{% endblock -%}
|
|
<script>
|
|
// {{ title }} script using default template
|
|
</script>
|
|
{%- block script %}{% endblock -%}
|
|
</body>
|
|
</html> |