D10 theme for Island Scholar v2 Clone of "vre2024"
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.4 KiB

3 weeks ago
{#
/**
* @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()
*/
#}
3 weeks ago
{# my dubugger #}
<details>
<summary>Rob's var dump</summary>
{{ dump(_context) }}
</details>
{# /my dubugger #}
3 weeks ago
<div class="scholar-profile">
<div class="top">
<div class="image">
</div>
<div class="details">
</div>
</div>
<div class="bottom">
</div>
</div>
3 weeks ago
<div{{ attributes }}>
{{ title_prefix }}
{% if name and not page %}
<h2><a href="{{ url }}">{{ name }}</a></h2>
{% endif %}
{{ title_suffix }}
{{ content }}
{{ content.field_email|add_class('test-class') }}
</div>
{# <script>console.log({{ _context | json_encode | raw}});</script> #}