menzilmekan-backend/themes/demo/pages/about.htm

26 lines
636 B
HTML

##
url = "/about"
layout = "default"
title = "About Page"
meta_title = "{{ aboutpage.title }}"
[section aboutpage]
handle = "Page\About"
[resources]
vars[activeNavLink] = 'about'
==
{% put headerAfter %}
<div class="container">
<div class="header-extra text-center">
<h1 class="mb-4">Hello! This is October CMS!</h1>
<p class="lead">A company proving that making websites is not rocket science.</p>
</div>
</div>
{% endput %}
<main class="header-flush">
{% for block in aboutpage.blocks %}
{% partial 'blocks/' ~ str_slug(block.type) block=block %}
{% endfor %}
</main>