Skip to content

Commit e22cff8

Browse files
committed
reinstate logged in divs for game
1 parent 7f13356 commit e22cff8

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

templates/node--game.html.twig

+4-5
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,10 @@
8080
view_mode ? 'node--view-mode-' ~ view_mode|clean_class
8181
]
8282
%}
83-
{# {% if logged_in %} #}
83+
{% if logged_in %}
8484
<div id="module-name-game" class="game__wrapper">
85-
8685
</div>
87-
{# {% endif %} #}
86+
{% endif %}
8887

8988
<article{{ attributes.addClass(classes) }}>
9089
{{ title_prefix }}
@@ -95,9 +94,9 @@
9594
{% endif %}
9695
{{ title_suffix }}
9796

98-
{# {% if not logged_in %} #}
97+
{% if not logged_in %}
9998
<div{{ content_attributes.addClass('node__content') }}>
10099
{{ content }}
101100
</div>
102-
{# {% endif %} #}
101+
{% endif %}
103102
</article>

0 commit comments

Comments
 (0)