7 lines
258 B
Twig
7 lines
258 B
Twig
{% macro about(view) %}
|
|
{% import "macros/widgets.html.twig" as widgets %}
|
|
{% set actions = {} %}
|
|
{% set event = trigger('actions.about', {'actions': actions, 'view': view}) %}
|
|
{{ widgets.page_actions(event.payload.actions) }}
|
|
{% endmacro %}
|