orange_ecom_starter-2.0.x-dev/templates/profiles/profile.html.twig
templates/profiles/profile.html.twig
{#
/**
* @file
*
* Default theme implementation for profiles.
*
* Available variables:
* - content: Items for the content of the profile.
* Use 'content' to print them all, or print a subset such as
* 'content.title'. Use the following code to exclude the
* printing of a given child element:
* @code
* {{ content|without('title') }}
* @endcode
* - attributes: HTML attributes for the wrapper.
* - profile: The profile object.
* - url: The profile URL, if available.
* - title_suffix: Additional output populated by modules, intended to be
* displayed after the main title tag that appears in the template.
*
* @ingroup themeable
*/
#}
<div{{ attributes.addClass('profile-item') }}>
<div class="profile-item__content">
{{ title_suffix.contextual_links }}
{{ content }}
</div>
</div>
