In the settings activate *nl* and *en* languages for translate the variables. The theme is *Animatter*
The problem is that the logo doesn't load. If i looking in the code there is adding automattically *nl*:
--- html
<img src="/nl/user/images/logo-reisgierig.png">
Where can i putting best the logo? Is it better in themes dir? How can i solve this that the logo shows without problem?
I just figured out I was still pointing the last example towards the theme/images folder and not the user/images folder. The following should now work.
<a href="{{ url('user://images/tom.png') }}"><img src="{{ url('user://images/tom.png') }}"></a> <br>
<!-- The following line displays images when placed in the folder user/images -->
<a href="{{ url }}/user/images/tom.png"><img src="{{ url('user://images/tom.png') }}"></a> <br>