Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. {% extends "_layout" %}
  2.  
  3. {# switch content based on Entry Type #}
  4.  
  5. {% switch entry.type %}
  6. {% case 'landing %}
  7. {# my landing page content or template include #}
  8. {% case 'entry' %}
  9. {# my entry page content or template include #}
  10. {% case 'contact' %}
  11. {# my contact page content or template include #}
  12. {% endif %}
  13.  
  14. {% extends "_layout" %}
  15.  
  16. {# if no body content and has descendants (i.e. no landing page)
  17. # redirect to first descendant with content defined #}
  18.  
  19. {% if not entry.body is defined or entry.body == "" %}
  20. {% set decendants = entry.descendants %}
  21. {% if decendants|length %}
  22. {% redirect decendants.first().url %}
  23. {% endif %}
  24. {% endif %}
  25.  
  26. {% block content %}
  27. {{ entry.title }}
  28. {{ entry.body }}
  29. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement