<!-- Expert List -->
<div class="expert_list">
<div class="expert_list_wrapper">
<div class="expert_list_inner">
<ul class="expert_list_rows" id="item_list" aria-label="">
<li class="expert_list_row theme_yellow">
<div class="expert">
<div class="expert_wrapper">
<div class="expert_info">
<h2 class="expert_name">Caley Arzamarski, PhD, NCSP</h2>
<div class="expert_detail_info">
<span class="expert_title">Director of Department</span>
<span class="expert_related_organization">Psychologist, Clinical Assistant Professor, Child & Adolescent Psychiatry, Warren Alpert Medical School of Brown University</span>
</div>
<div class="expert_moderator">Moderator</div>
</div>
<figure class="expert_figure">
<img class="expert_image" srcset="https://images.fastspot.com/framework/300x300/1 300w, https://images.fastspot.com/framework/100x100/1 100w" src="https://images.fastspot.com/framework/100x100/1" alt="" loading="lazy" width="100" height="100">
</figure>
</div>
</div>
</li>
<li class="expert_list_row theme_salmon">
<div class="expert">
<div class="expert_wrapper">
<div class="expert_info">
<h2 class="expert_name">Caley Arzamarski, PhD, NCSP</h2>
<div class="expert_detail_info">
<span class="expert_title">Director of Department</span>
<span class="expert_related_organization">Psychologist, Clinical Assistant Professor, Child & Adolescent Psychiatry, Warren Alpert Medical School of Brown University</span>
</div>
</div>
<figure class="expert_figure">
<img class="expert_image" srcset="https://images.fastspot.com/framework/300x300/1 300w, https://images.fastspot.com/framework/100x100/1 100w" src="https://images.fastspot.com/framework/100x100/1" alt="" loading="lazy" width="100" height="100">
</figure>
</div>
</div>
</li>
<li class="expert_list_row theme_light_green">
<div class="expert">
<div class="expert_wrapper">
<div class="expert_info">
<h2 class="expert_name">Caley Arzamarski, PhD, NCSP</h2>
<div class="expert_detail_info">
<span class="expert_title">Director of Department</span>
<span class="expert_related_organization">Psychologist, Clinical Assistant Professor, Child & Adolescent Psychiatry, Warren Alpert Medical School of Brown University</span>
</div>
</div>
<figure class="expert_figure">
<img class="expert_image" srcset="https://images.fastspot.com/framework/300x300/1 300w, https://images.fastspot.com/framework/100x100/1 100w" src="https://images.fastspot.com/framework/100x100/1" alt="" loading="lazy" width="100" height="100">
</figure>
</div>
</div>
</li>
<li class="expert_list_row theme_pink">
<div class="expert">
<div class="expert_wrapper">
<div class="expert_info">
<h2 class="expert_name">Caley Arzamarski, PhD, NCSP</h2>
<div class="expert_detail_info">
<span class="expert_title">Director of Department</span>
<span class="expert_related_organization">Psychologist, Clinical Assistant Professor, Child & Adolescent Psychiatry, Warren Alpert Medical School of Brown University</span>
</div>
</div>
<figure class="expert_figure">
<img class="expert_image" srcset="https://images.fastspot.com/framework/300x300/1 300w, https://images.fastspot.com/framework/100x100/1 100w" src="https://images.fastspot.com/framework/100x100/1" alt="" loading="lazy" width="100" height="100">
</figure>
</div>
</div>
</li>
<li class="expert_list_row theme_light_blue">
<div class="expert">
<div class="expert_wrapper">
<div class="expert_info">
<h2 class="expert_name">Caley Arzamarski, PhD, NCSP</h2>
<div class="expert_detail_info">
<span class="expert_title">Director of Department</span>
<span class="expert_related_organization">Psychologist, Clinical Assistant Professor, Child & Adolescent Psychiatry, Warren Alpert Medical School of Brown University</span>
</div>
</div>
<figure class="expert_figure">
<img class="expert_image" srcset="https://images.fastspot.com/framework/300x300/1 300w, https://images.fastspot.com/framework/100x100/1 100w" src="https://images.fastspot.com/framework/100x100/1" alt="" loading="lazy" width="100" height="100">
</figure>
</div>
</div>
</li>
<li class="expert_list_row theme_dark_green">
<div class="expert">
<div class="expert_wrapper">
<div class="expert_info">
<h2 class="expert_name">Caley Arzamarski, PhD, NCSP</h2>
<div class="expert_detail_info">
<span class="expert_title">Director of Department</span>
<span class="expert_related_organization">Psychologist, Clinical Assistant Professor, Child & Adolescent Psychiatry, Warren Alpert Medical School of Brown University</span>
</div>
</div>
<figure class="expert_figure">
<img class="expert_image" srcset="https://images.fastspot.com/framework/300x300/1 300w, https://images.fastspot.com/framework/100x100/1 100w" src="https://images.fastspot.com/framework/100x100/1" alt="" loading="lazy" width="100" height="100">
</figure>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
{#
{% include '@partial-expert-row-list' with {
items: [
{
name: 'Full Name',
job_title: 'Director of Department',
blurb:'Psychologist, Clinical Assistant Professor, Child & Adolescent Psychiatry, Warren Alpert Medical School of Brown University',
related_organization:'',
image: '1',
moderator:false
}
]
} %}
#}
{% set color_pattern = color_patterns.primary %}
{% set data_attr = {
color_pattern: color_pattern
}|json_encode() %}
<!-- Expert List -->
<div class="expert_list">
<div class="expert_list_wrapper">
<div class="expert_list_inner">
<ul class="expert_list_rows" id="item_list" aria-label="{{ title }}">
{% for item in items %}
{% set theme = get_theme_key(color_pattern, loop.index0) %}
<li class="expert_list_row theme_{{ theme }}">
{% include '@partial-expert-row-list-item' with {
name: item.name,
job_title: item.job_title,
related_organization:item.related_organization,
image: item.image,
moderator:item.moderator
} %}
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
No notes defined.