{# # This template is loaded whenever the URL matches a Cocktails section entry, # because the Cocktails section's "Entry Template" setting is set to "cocktails/_entry". # # Craft will pre-populate an 'entry' variable with the matched Cocktails entry # when loading this template. # # See: http://docs.buildwithcraft.com/reference/routing.html #} {% extends "_layout" %} {% set title = entry.title %} {% block head %} {{ parent() }} {% if entry.linkColor and entry.linkColor != '#000000' %} {% endif %} {% if entry.photos | length %} {% endif %} {% endblock %} {% block content %}
{% if entry.ingredients | length %}

Ingredients

{% endif %} {% include "_includes/photos" with { photos: entry.photos } only %} {% if entry.description %}

Description

{{ entry.description }}
{% endif %}
{% endblock %}