{{#if (myEq attributes.type "Product")}}
{{#if (myEq attributes.is_family "No")}}
{{#if attributes.family_id}}
Series: {{attributes.family_id}}
{{/if}}
{{#if attributes.part_number}}
{{/if}}
{{#if (myEq attributes.consult_factory_price "1")}}
Price:
Consult Factory
{{else}}
Price:
{{#if (isNumber attributes.list_price)}}
{{currency attributes.list_price}} {{attributes.currency_code}}
{{/if}}
{{/if}}
{{attributes.description}}
{{#if (myEq attributes.consult_factory_leadtime "1")}}
Leadtime:
Consult Factory
{{else}}
Leadtime:
{{#if (isNumber attributes.leadtime)}}
{{isInt attributes.leadtime}} {{attributes.leadtime_period}}
{{/if}}
{{/if}}
{{else}}
{{#if attributes.family_id}}
Series: {{attributes.family_id}}
{{else}}
{{attributes.title}}
{{/if}}
{{#if attributes.description}}
{{#if attributes.family_page_link}}
{{truncateWithMore attributes.description attributes.family_page_link}}
{{else}}
{{truncateWithMore attributes.description attributes.url_detail}}
{{/if}}
{{/if}}
{{/if}}
{{else if (myEq attributes.type "Content")}}
{{#if (myEq attributes.content_type "Page")}}
{{attributes.title}}
{{#if attributes.description}}
{{#if attributes.family_page_link}}
{{truncateWithMore attributes.description attributes.family_page_link}}
{{else}}
{{truncateWithMore attributes.description attributes.url_detail}}
{{/if}}
{{else if attributes.description_short}}
{{#if attributes.family_page_link}}
{{truncateWithMore attributes.description_short attributes.family_page_link}}
{{else}}
{{truncateWithMore attributes.description_short attributes.url_detail}}
{{/if}}
{{/if}}
{{else if (myEq attributes.content_type "BlogPost")}}
{{attributes.title}}
{{#if attributes.description}}
{{#if attributes.family_page_link}}
{{truncateWithMore attributes.description attributes.family_page_link}}
{{else}}
{{truncateWithMore attributes.description attributes.url_detail}}
{{/if}}
{{else if attributes.description_short}}
{{#if attributes.family_page_link}}
{{truncateWithMore attributes.description_short attributes.family_page_link}}
{{else}}
{{truncateWithMore attributes.description_short attributes.url_detail}}
{{/if}}
{{/if}}
{{else}}
UNKNOWN TYPE 2 (type:{{attributes.type}}, content_type:{{attributes.content_type}})
{{/if}}
{{else}}
UNKNOWN TYPE 1: (type:{{attributes.type}}, content_type:{{attributes.content_type}})
{{/if}}