generated from inherentlee/11ty
14 lines
186 B
Plaintext
14 lines
186 B
Plaintext
---
|
|
layout: base.njk
|
|
---
|
|
|
|
{% if hero %}
|
|
<img id="hero" src="{{ hero.src }}" alt="{{ hero.alt }}">
|
|
{% endif %}
|
|
|
|
<div id="content">
|
|
<h1>{{ title }}</h1>
|
|
|
|
{{ content | safe }}
|
|
</div>
|