Skip to content

Commit

Permalink
Rollback of last change.
Browse files Browse the repository at this point in the history
  • Loading branch information
mworrell committed Jun 20, 2012
1 parent d1db4ac commit 1466c99
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
@@ -1,7 +1,7 @@
{% include "_subnav.tpl" %}

{% include "_content_list.tpl" list=id.o.hasfeatured %}
{% if id.body %}
{% if id.body or id.blocks %}
{% include "_content_list.tpl" list=id.o.haspart in_collection=id %}
{% endif %}
{% include "_content_list.tpl" list=id.o.relation %}
9 changes: 4 additions & 5 deletions modules/mod_base_site/templates/tablet/page.collection.tpl
Expand Up @@ -2,11 +2,10 @@

{% block main %}
{% inherit %}
{% if not id.body %}
{% if not (id.body or id.blocks) %}
{% include "_content_list.tpl" list=id.o.haspart in_collection=id is_large %}
{% if not id.blocks %}
{% include "_page_depiction.tpl" is_landscape %}
{% endif %}

{% include "_page_depiction.tpl" is_landscape %}
{% include "_page_thumbnails.tpl" %}
{% endif %}
{% endblock %}
Expand All @@ -18,7 +17,7 @@
{% endblock %}

{% block thumbnails %}
{% if id.body %}
{% if id.body or id.blocks %}
{% inherit %}
{% endif %}
{% endblock %}
Expand Down

0 comments on commit 1466c99

Please sign in to comment.