{% if self.page_primary_action() | trim %}
{%- call ui.util.call(ui.page_action_wrapper) -%}
{% block page_primary_action -%}{% endblock %}
{%- endcall %}
{% endif %}
{% block primary_content_inner %}
{% endblock %}
{#
The pre_primary block can be used to add content to before the
rendering of the main content columns of the page.
#}
{% block pre_primary %}
{% if self.content_action() | trim %}
{%- call ui.util.call(ui.content_action_wrapper) -%}
{% block content_action -%}{% endblock %}
{%- endcall %}
{% endif %}
{% endblock %}
{% block secondary %}
{% endblock %}
{% block primary %}
{% endblock %}
{#
The primary_content block can be used to add content to the page.
This is the main block that is likely to be used within a template.
Example:
{% block primary_content %}
{% block page_header %}
{%- call ui.util.call(ui.content_nav_wrapper) -%}
{% block content_primary_nav -%}{% endblock %}
{%- endcall %}
{% endblock %}
{% endblock %}
{% endblock %}
My page content
Some content for the page
{% endblock %} #} {% block primary_content %}