Hide the user picture in all cases
Until https://gitlab.com/agaric/sites/agaric-com/issues/117
This commit is contained in:
parent
b47e048902
commit
7a125fd464
1 changed files with 6 additions and 1 deletions
|
@ -73,7 +73,12 @@
|
||||||
{{ created }}<br />
|
{{ created }}<br />
|
||||||
{{ author }}
|
{{ author }}
|
||||||
</p>
|
</p>
|
||||||
{% if user_picture %}
|
{% if false and user_picture %}
|
||||||
|
{# Drupal is broken and so prints all this, including an <article> wrapper
|
||||||
|
for the user, even when there is no user picture at all, even for
|
||||||
|
anonymous users. Therefore we'll skip this, but maybe can bring it back
|
||||||
|
to only print pictures for Agaric worker-owners, along with other special
|
||||||
|
styling for us fancy folk. #}
|
||||||
<figure class="media-left">
|
<figure class="media-left">
|
||||||
{{ user_picture }}
|
{{ user_picture }}
|
||||||
</figure>
|
</figure>
|
||||||
|
|
Loading…
Reference in a new issue