{# /** * @file * Theme override to display a taxonomy term. * * Available variables: * - url: URL of the current term. * - name: (optional) Name of the current term. * - content: Items for the content of the term (fields and description). * Use 'content' to print them all, or print a subset such as * 'content.description'. Use the following code to exclude the * printing of a given child element: * @code * {{ content|without('description') }} * @endcode * - attributes: HTML attributes for the wrapper. * - page: Flag for the full page state. * - term: The taxonomy term entity, including: * - id: The ID of the taxonomy term. * - bundle: Machine name of the current vocabulary. * - view_mode: View mode, e.g. 'full', 'teaser', etc. * * @see template_preprocess_taxonomy_term() */ #} {# my dubugger
Rob's var dump {{ dump(content) }}
/my dubugger #} {% set fancy_fields = [ content.name, content.field_image, content.field_email, content.field_position, content.field_departments, content.field_phone, content.field_address, content.field_website, content.field_orcid, content.field_biography, content.field_google_scholar_id, content.field_status, content.field_fields_of_activity, content.field_upei_identifier_u1 ] %}
SCHOLAR DETAILS
{{ content.field_image|add_class('scholar-profile_image') }}
{{ content.name }} {{ content.field_email }} {{ content.field_position }} {{ content.field_departments }} {{ content.field_phone }} {{ content.field_address }} {{ content.field_website }} {{ content.field_orcid }} {{ content.field_google_scholar_id }} {{ content.field_status }} {{ content.field_upei_identifier_u1 }}

{{ content.field_biography }}
{% set view = drupal_view_result('scholar_profile_recent_citations_block', 'block_1')|length %} {% if view > 0 %}
Recent Citations
{{ drupal_view('scholar_profile_recent_citations_block', 'block_1') }}
{% endif %} {{ content.field_fields_of_activity }}
{{ title_prefix }} {% if name and not page %}

{{ name }}

{% endif %} {{ title_suffix }} {{ content|without(fancy_fields) }} {# #}