Files
mattrbld/_includes/layouts/page.njk

14 lines
189 B
Plaintext
Raw Normal View History

---
layout: base.njk
---
{% if hero %}
2026-05-13 17:00:38 -07:00
<img class="hero" src="{{ hero.src }}" alt="{{ hero.alt }}">
2026-05-13 10:49:51 -07:00
{% endif %}
2026-05-13 17:00:38 -07:00
<div id="content">
<h1>{{ title }}</h1>
{{ content | safe }}
</div>