41 lines
1.1 KiB
HTML
41 lines
1.1 KiB
HTML
##
|
|
description = "Default layout"
|
|
==
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% partial 'site/head/head-meta' %}
|
|
<title>October CMS - {{ this.page.meta_title ?: placeholder('pageTitle') }}</title>
|
|
<meta name="description" content="{{ this.page.meta_description }}">
|
|
<meta name="title" content="{{ this.page.meta_title }}">
|
|
{% partial 'site/head/head-links' %}
|
|
{% partial 'site/head/head-scripts' %}
|
|
{% partial 'site/head/analytics-code' %}
|
|
</head>
|
|
<body class="{{ 'page-'~this.page.id }}">
|
|
|
|
<!-- Header -->
|
|
<header id="layout-header">
|
|
{% partial 'site/header' %}
|
|
</header>
|
|
|
|
{% partial 'site/flash-messages' %}
|
|
|
|
<!-- Content -->
|
|
<section id="layout-content">
|
|
{% page %}
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer id="layout-footer">
|
|
{% partial 'site/footer' %}
|
|
</footer>
|
|
|
|
<!-- Mobile -->
|
|
{% partial 'site/nav-mobile' %}
|
|
|
|
<!-- How the page is made -->
|
|
{% partial 'site/how-its-made' %}
|
|
</body>
|
|
</html>
|