Place Single Post
{% capture popup_title %}
{{place.title}}
{% endcapture %}
{% assign post_title = place.title %}
{% assign post_id = place.id %}
{% assign post_tag = place.tags.first %}
{% if place.place.title != 'Anywhere' %}
{% assign place_title = place.place.title %}
{% endif %}
{{place.title}}
{{place.content}}
{% collection testimonials, limit:1, tag:post_tag, order:random %}
{% if testimonials.size > 0 %}
{% for testimonial in testimonials %}
{{testimonial.title}} - {{testimonial.content | strip_html | truncate:60 }}
By {{testimonial.meta1}}
{% if testimonial.place.size > 0 %}
trip to {{testimonial.place.title}}
{% endif %}
{% endfor %}
{% endif %}
{% collection products, tag:post_tag, limit: 3, order:random %}
{% if products.size > 0 %}
Featured Experiences
{% partial products_thumbs %}
{% endif %}
{% collection blogs, tag:post_tag, limit:6, order:created_at desc %}
{% if blogs.size > 0 %}
Featured Stories
{% for p in blogs %}
{% endfor %}
{% if blogs.size > 2 %}
{% endif %}
{% endif %}