murph-skeleton/templates/page/simple/default.html.twig

17 lines
377 B
Twig
Raw Normal View History

2022-02-21 23:58:08 +01:00
{% extends 'base.html.twig' %}
2021-03-24 12:27:07 +01:00
2022-02-21 23:58:08 +01:00
{%- block page -%}
<h1>{{ _page.title.value }}</h1>
2021-03-24 12:27:07 +01:00
2022-02-21 23:58:08 +01:00
{{ _page.content.value|murph_url|file_attributes|raw }}
2021-03-24 12:27:07 +01:00
2022-02-21 23:58:08 +01:00
<hr>
2021-03-24 12:27:07 +01:00
2022-02-21 23:58:08 +01:00
{% set image = _page.image.value %}
2021-03-24 12:27:07 +01:00
2022-02-21 23:58:08 +01:00
{% if image %}
<img src="{{ asset(image) }}" alt="{{ image|file_attribute('alt') }}" title="{{ image|file_attribute('title') }}">
{% endif %}
{%- endblock -%}
2021-03-24 12:27:07 +01:00