{% switch entry.type %}

	{# Redirect to first child #}
	{% case "redirectToFirstChild" %}
		{% if entry.hasDescendants() %}
			{% redirect entry.getChildren().one.url %}
		{% endif %}

	{# {% case "childListing" %}
		{% include 'sections/general/childListing' %}

	{% case "newsListing" %}
		{% include 'sections/news/newsListing' %}
	 #}
	{% case "servicesListing" %}
		{% include 'sections/services/servicesListing' %}

	{% case "aboutPage" %}
		{% include 'sections/about/page' %}
	
	{% case "paymentPage" %}
		{% include 'sections/payment/page' %}

	{% case "contactPage" %}
		{% include 'sections/contact/page' %}

	{% default %}
		{% include 'sections/general/generalContent' %}

{% endswitch %}
