64 lines
1.8 KiB
HTML
64 lines
1.8 KiB
HTML
##
|
|
description = "Blog layout"
|
|
|
|
[resources]
|
|
vars[activeBlogCategory] = ""
|
|
==
|
|
<!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="layout-blog">
|
|
|
|
<!-- Header -->
|
|
<header id="layout-header">
|
|
{% partial 'site/header' %}
|
|
</header>
|
|
|
|
{% partial 'site/flash-messages' %}
|
|
|
|
<!-- Content -->
|
|
<section id="layout-content">
|
|
<div class="container">
|
|
{% set pageTitle = placeholder('pageTitle') %}
|
|
{% if pageTitle %}
|
|
<header>
|
|
<h1>{{ pageTitle }}</h1>
|
|
</header>
|
|
{% endif %}
|
|
<div class="row g-5">
|
|
<div class="col-md-8">
|
|
<div class="pe-3">
|
|
{% page %}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
<div class="position-sticky" style="top: 2rem;">
|
|
{% partial 'blog/sidebar' %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</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>
|