rolandjesse.de/_layouts/index.html

43 lines
760 B
HTML
Executable file

<!-- Index Layout Start -->
<!DOCTYPE html>
<html lang="{{ site.lang }}">
{% include head.html %}
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top">
{% include navigation.html %}
{% include header.html %}
{% for page in site.pages %}
{% if page.section-type == "about" %}
{% include about.html %}
{% elsif page.section-type == "latest-post" %}
{% include latest-post.html %}
{% elsif page.section-type == "career" %}
{% include career.html %}
{% elsif page.section-type == "contact" %}
{% include contact.html %}
{% endif %}
{% endfor %}
{% include footer.html %}
{% include js.html %}
</body>
</html>
<!-- Index Layout End -->