상영 3 결과
암스테르담, 노르트홀란트 근처 모든 결과
오크 피부과 | 이타스카
일리노이주 이타스카의 피부과
오크 피부과 | 이타스카
이타스카, IL 60143
오크 피부과 | 네이퍼빌
일리노이주 네이퍼빌의 피부과
오크 피부과 | 네이퍼빌
네이퍼빌, IL 60563
오크 피부과 | 졸리엣
일리노이주 조리엣의 피부과
오크 피부과 | 졸리엣
3100 시어도어 스트리트
인트 202 및 203
졸리엣, IL 60435
{%- 별_배열 = 별 할당 | 분할: '' -%} {%- 별_배열에 별을 -%} {%- 별의 경우 -%} {%- 'h'일 때 -%} {%- 'svg/star-half' 포함 -%} {%- 그렇지 않은 경우 -%} {%- 'svg/star-full' 포함 -%} {%- endcase -%} {%- endfor -%}
{%- comment -%} `tag_name`에서 앞뒤 공백을 제거합니다. {%- endcomment -%} {%- assign tag_name = tag_name | strip -%} {%- comment -%} `tag_name: ''` 케이스를 처리합니다. {%- endcomment -%} {%- if tag_name and tag_name.size < 1 -%} {%- assign tag_name = false -%} {%- endif -%} {%- if tag_name -%} <{{ tag_name }} {{- attrs | to_attrs -}} {{- 추가_속성 -}} {%- 자체_닫힘 == 참이면 -%} {{- ' /' -}} {%- endif -%} > {%- endif -%} {%- 자체_닫힘 == 참이 아니면 -%} {%- ifslot -%} {%- slot -%} {%- else -%} {{- inner_html -}} {%- endifslot -%} {%- if tag_name -%} {%- endif -%} {%- endunless -%}{%- assign has_options = filter.options.size > 0 -%} {%- comment -%} 단일 선택에 대해 "모두" 옵션을 추가하는 특수 논리가 있으므로 단일 선택 및 1개 옵션 == 옵션 없음입니다. {%- endcomment -%} {%- except filter.multi -%} {%- assign has_options = filter.options.size > 1 -%} {%- endunless -%} {%- if filter.disable_filter != true and has_options -%} {%- if filter.heading -%} {%- using filter.heading -%} {%- assign attrs = attrs | merge_props: class: 'filter__heading' -%} {%- include 'atom/element' -%} {%- endusing -%} {%- endif -%} {%- 필터 유형 == '선택'인 경우 -%} {%- endif -%} {%- 필터 옵션의 옵션에 대해 -%} {%- 필터 유형 케이스 -%} {%- 링크일 때 -%} {{ 옵션.라벨 }} {%- 입력일 때 -%} {%- 입력 유형 = '라디오' 할당 -%} {%- 필터 다중일 때 -%} {%- 입력 유형 = '체크박스' 할당 -%} {%- endif -%} {%- 옵션 선택일 때 -%} {%- 체크됨 = '체크됨' 할당 -%} {%- endif -%} {{ option.label }} {%- '선택' 시 -%} {{- 옵션.라벨 -}} {%- endcase -%} {%- endfor -%} {%- if 필터 유형 == '선택' -%} {%- 끝 -%} {%- 끝 -%}
{% capture id %}{{ item.id }}{% endcapture %}
<div class="card card--{{item.type}} card--{{ orientation }} {{ item.card_class }}" {% if id.size > 0 %}id="{{ id }}"{% endif %}>
{% unless bg_img == false or item.bg_image.size == 0 %}
{% if item.bg_image != "#" %}
{% capture styles %}
"background:url('{{ item.bg_image | asset_url}}') {{item.bg_x | default: 'center' }} {{item.bg_y | default: 'center'}}/{{item.bg_size | default: 'cover' }} {{item.bg_repeat | default: 'no-repeat' }};"
{% endcapture %}
{% else %}
{% assign styles = "" %}
{% endif %}
<div class="card__image" style={{styles}}>
{% if item.bg_image == "#" %}
{{item.image_fallback}}
{% endif %}
{% unless distance == false or item.distance.size == 0 %}
<div class="card__distance">
<span class="card__distance-miles">{{ item.distance }}</span>
<span class="card__distance-label">Miles</span>
</div>
{% endunless %}
</div>
{% endunless %}
{% comment %} {% if item.bg_image == "#" or item.bg_image != blank%}
<div class="card__image">
{{item.avatar}}
{% endif%} {% endcomment %}
<div class="card__details">
<div class="card__title">
<h2>{{ item.title }}</h2>
<p>
{{ item.practice_type }}
{% if item.city.size > 0 %}
in {{ item.city }}
{%- if item.state.size > 0 -%}
, {{ item.state }}
{%- endif -%}
{% endif %}
</p>
</div>
{% unless stars == false or item.stars == nil or item.stars.size == 0 %}
<div class="card__testimonials">
<span class="card__testimonials-stars">
{% include 'testimonials/star-rating', stars: item.stars %}
</span>
<span class="card__testimonials-total">
({{ item.testimonial_count }})
</span>
</div>
{% endunless %}
{% unless address_title == false or item.address_title == nil or item.address_title.size == 0 %}
<p class="card__facility-name">{{ item.address_title }}</p>
{% endunless %}
{% unless address == false or item.address == nil or item.address.size == 0 %}
<div class="card__facility-address">
<p>{{ item.address }}</p>
{% if item.address_2.size > 0 %}
<p>{{ item.address_2 }}</p>
{% endif %}
</div>
<div class="text card__city-st-zip">
<span>{{ item.city }}, </span><span>{{ item.state }} </span><span>{{ item.zip }}</span>
</div>
{% endunless %}
{% if item.phone.size > 0 %}
<div class="card__phone">
<a href="tel:{{ item.phone }}">{{ item.phone }}</a>
</div>
{% endif %}
{% if disable_smart_hours == true %}
<div class="card__hours">
{% if item.hours.size > 0 %}
<p>{{item.hours}} </p>
<span class="card__hours-divider">|</span>
{% endif %}
<a target="_blank" href="{{ item.all_hours_url }}">All Hours</a></div>
{% else %}
{% if item.smart_hours.size > 0 %}
<div class="card__smart-hours">
<p>
<dl-smart-hours class="smart-hours" details="{{ item.smart_hours_detail }}">{{item.smart_hours}}</dl-smart-hours>
</p>
</div>
{% endif %}
{% endif %}
</div>
{%- unless brand == false -%}
{%- unless item.brand_img == nil or item.brand_img.size == 0 -%}
<div class="card__brand">
<picture>
<img src="{{ item.brand_img | asset_url }}" alt="{{ item.brand_alt }}">
</picture>
</div>
{%- else -%}
{% unless item.brand == nil or item.brand.size == 0 %}
<div class="card__brand">
<picture>
<source srcset="{{ item.brand | append: 'MasterPage/logo-color.svg' | asset_url }}">
<source srcset="{{ item.brand | append: 'MasterPage/header_logo.png' | asset_url }}">
<source srcset="{{ item.brand | append: 'MasterPage/logo.svg' | asset_url }}">
<source srcset="{{ item.brand | append: 'MasterPage/logo-white.svg' | asset_url }}">
<img src="{{ item.brand | append: 'MasterPage/logo.png' | asset_url }}" alt="{{ item.brand_alt }}">
</picture>
</div>
{% endunless %}
{%- endunless -%}
{%- endunless -%}
{% unless ctas == false or item.cta == nil or item.cta.size == 0 %}
<div class="card__ctas">
{% for cta in item.cta %}
<a href="{{ cta.link }}" target="{{ cta.target }}" class="btn card__cta">{{ cta.label }}</a>
{% endfor %}
</div>
{% endunless %}
{% comment %} We can remove this, it was just nice for debugging filters {% endcomment %}
{% comment %}
<details style="grid-column: 1 / span 12;">
<summary>filterValues JSON</summary>
<pre>{{ item.filterValues | json: true }}</pre>
</details>
<dl style="grid-column: 1 / span 12;">
<dt>Person Id</dt>
{%- for filter_val in item.filterValues -%}
<dd>{{ filter_val.PersonId }}</dd>
{%- endfor -%}
</dl>
<dl style="grid-column: 1 / span 12;">
<dt>Facility Id</dt>
{%- for filter_val in item.filterValues -%}
<dd>{{ filter_val.FacilityId}}</dd>
{%- endfor -%}
</dl>
<details style="grid-column: 1 / span 12;">
<summary>Specialities</summary>
<ol>
{%- for filter_val in item.filterValues -%}
{%- for specialty in filter_val.Specialty -%}
<li>{{ specialty.SpecialityLabel }} ({{ specialty.SpecialtyId }})</li>
{%- endfor -%}
{%- endfor -%}
</ol>
</details>
<details style="grid-column: 1 / span 12;">
<summary>Procedures</summary>
<ol>
{%- for filter_val in item.filterValues -%}
{%- for specialty in filter_val.Specialty -%}
{%- for procedure in specialty.Procedures -%}
<li>{{ procedure.ProcedureLabel }} ({{ procedure.MasterProcedureId }})</li>
{%- endfor -%}
{%- endfor -%}
{%- endfor -%}
</ol>
</details> {% endcomment %}
</div>