Hi to all. My problem is a syntax problem.
I want include translation function in tag Volt "linkto" between <a> </a> php results.
With this syntaxt:
<li> {{ linkto("Alumnos/index", "<i class='glyphicon glyphicon-user')></i>") }} {{mt.('Alumnes')}}</li>
the result translation is put out of <a> </a>:
<li> <a href="/escuelaProyecto/Alumnos/index"><i class='glyphicon glyphicon-user')></i></a> Alumnos</li>
And i want the next result:
<li> <a href="/escuelaProyecto/Alumnos/index"><i class='glyphicon glyphicon-user')></i> Alumnos</a> </li>
How can I do it, or what is the correct syntax? Thanks everybody.