Showing 0 Results
All Results near Ashburn, Virginia
<div class="star-rating">
{%- assign star_arr = stars | split: '' -%}
{%- for star in star_arr -%}
{%- case star -%}
{%- when 'h' -%}
{%- include 'svg/star-half' -%}
{%- else -%}
{%- include 'svg/star-full' -%}
{%- endcase -%}
{%- endfor -%}
</div><svg class="star {{ class }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
<defs>
<linearGradient id="star-full" x1="0%" y1="50%" x2="100%" y2="50%" >
<stop class="fill fill--1" offset="0%" stop-color="rgb(255,221,0)" stop-opacity="1.00" />
<stop class="fill fill--2" offset="50%" stop-color="rgb(255,221,0)" stop-opacity="1.00" />
<stop class="fill fill--3" offset="50%" stop-color="rgb(255,221,0)" stop-opacity="1.00" />
<stop class="fill fill--4" offset="100%" stop-color="rgb(255,221,0)" stop-opacity="1.00" />
</linearGradient>
</defs>
<g><path fill="url(#star-full)" d="M46,18H30.19L24.952,1.694a1,1,0,0,0-1.9,0L17.81,18H2a1,1,0,0,0-.612,1.791L14,29.554,8.752,45.691a1,1,0,0,0,1.539,1.118L24,36.85l13.709,9.959a1,1,0,0,0,1.539-1.118L34,29.554l12.608-9.763A1,1,0,0,0,46,18Z"></path></g>
</svg><svg class="star {{ class }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
<defs>
<linearGradient id="star-half" x1="0%" y1="50%" x2="100%" y2="50%" >
<stop class="fill fill--1" offset="0%" stop-color="rgb(255,221,0)" stop-opacity="1.00" />
<stop class="fill fill--2" offset="50%" stop-color="rgb(255,221,0)" stop-opacity="1.00" />
<stop class="empty empty--1" offset="50%" stop-color="rgb(255,221,0)" stop-opacity="0" />
<stop class="empty empty--2" offset="100%" stop-color="rgb(255,221,0)" stop-opacity="0" />
</linearGradient>
</defs>
<g><path fill="url(#star-half)" d="M46,18H30.19L24.952,1.694a1,1,0,0,0-1.9,0L17.81,18H2a1,1,0,0,0-.612,1.791L14,29.554,8.752,45.691a1,1,0,0,0,1.539,1.118L24,36.85l13.709,9.959a1,1,0,0,0,1.539-1.118L34,29.554l12.608-9.763A1,1,0,0,0,46,18Z"></path></g>
</svg>{%- comment -%} Remove leading and trailing whitespace from `tag_name`. {%- endcomment -%}
{%- assign tag_name = tag_name | strip -%}
{%- comment -%} Handle the `tag_name: ''` case. {%- endcomment -%}
{%- if tag_name and tag_name.size < 1 -%}
{%- assign tag_name = false -%}
{%- endif -%}
{%- if tag_name -%}
<{{ tag_name }}
{{- attrs | to_attrs -}}
{{- additional_attrs -}}
{%- if self_closing == true -%}
{{- ' /' -}}
{%- endif -%}
>
{%- endif -%}
{%- unless self_closing == true -%}
{%- ifslot -%}
{%- slot -%}
{%- else -%}
{{- inner_html -}}
{%- endifslot -%}
{%- if tag_name -%}
</
{{- tag_name -}}
>
{%- endif -%}
{%- endunless -%}{%- assign has_options = filter.options.size > 0 -%}
{%- comment -%}
There is special logic for single select that will add an "All" option, so single select and 1 option == no options.
{%- endcomment -%}
{%- unless 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 -%}
<div class="modal__filter-items" data-filter-for="{{ filter.name }}">
{%- if filter.type == 'select' -%}
<select
name="{{ filter.name }}"
{% if filter.multi -%}multiple{%- endif %}
class="filter__select">
{%- endif -%}
{%- for option in filter.options -%}
{%- case filter.type -%}
{%- when 'link' -%}
<a
href="{{ option.link }}"
data-filter-name="{{option.filterName}}"
data-filter-value="{{option.filterValue}}"
class="filter__link"
target="{{ option.target }}">
{{ option.label }}
</a>
{%- when 'input' -%}
{%- assign input_type = 'radio' -%}
{%- if filter.multi -%}
{%- assign input_type = 'checkbox' -%}
{%- endif -%}
{%- if option.selected -%}
{%- assign checked = 'checked' -%}
{%- endif -%}
<label>
<input
type="{{ input_type }}"
name="{{ filter.name }}"
value="{{ option.value }}"
{%- if option.selected -%}
checked
{%- endif -%}
/>
<span
class="filter__link">
{{ option.label }}
</span>
</label>
{%- when 'select' -%}
<option
value="{{ option.value }}"
{%- if option.selected %} selected{% endif -%}>
{{- option.label -}}
</option>
{%- endcase -%}
{%- endfor -%}
{%- if filter.type == 'select' -%}
</select>
{%- endif -%}
</div>
{%- endif -%}
{% 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>{{item.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>