UPDATE:
I am using EJS, and i have a partial file with a simple navbar to change the language, i want require this partial in all my pages, code:
<aside class="language">
<a href="/pt">
<i class="flag-icon flag-icon-br"></i>
</a>
<a href="/es">
<i class="flag-icon flag-icon-es"></i>
</a>
<a href="/en">
<i class="flag-icon flag-icon-us"></i>
</a>
</aside>
The problem here, is:
The links are pointing to /, and i want change to the current path, for example:
If i am in the /something page, i want the links pointing to /something/pt, /something/en and something/es
How achieve this?