WEBD-325-45/week-05/project/templates/site/page.twig

14 lines
498 B
Twig

{% extends "index.twig" %}
{% block content %}
<div class="uk-margin-remove-top uk-background-cover uk-flex" style="background-image: url('https://source.unsplash.com/random/1920x500/?yachts');">
<div class="uk-width-1-2@m uk-text-center uk-margin-auto uk-margin-auto-vertical uk-overlay uk-overlay-default">
<h1>{{ title }}</h1>
{% if body == '' %}
<p>We have an error!</p>
{% else %}
{{ body|raw }}
{% endif %}
</div>
</div>
{% endblock %}