{% 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' %}

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


{% endswitch %}
