-
-
Notifications
You must be signed in to change notification settings - Fork 0
Content blocks
maneesha edited this page Sep 13, 2024
·
1 revision
Blocks templates live in the layouts/partials/blocks/templates/{layout}.html
directory where layout
matches the block's layout
frontmatter key.
---
title: New Page
blocks:
- layout: text
title: Hello World!
copy: >-
Fusce dapibus, tellus ac cursus **commodo**, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Lorem ipsum dolor sit amet, consectetur [adipiscing](/url) elit.
Yep!
---
At `/layouts/partials/blocks/templates/text.html
{{/*
blocks/text
@context Map (.)
Page (.Page)
Map (.block)
String (.title)
String (.copy)
*/}}
{{ with .block }}
<h3>{{ .title }}</h3>
{{ with .copy }}
<div>
{{ $.Page.RenderString }}
</div>
{{ end }}
{{ end }}