Files
docker-docs/get-started/nodejs/nav.html
Sebastiaan van Stijn bec50329b9 Fix links not having a trailing /
This avoids resulting in a redirect to the URL with /

Found these using `href="[^#][^#"]+[^/]"`

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-13 12:06:06 +02:00

6 lines
443 B
HTML

<ul class="pagination">
<li {% if include.selected=="1"%}class="active"{% endif %}><a href="/get-started/nodejs/build-images/">Build images</a></li>
<li {% if include.selected=="2"%}class="active"{% endif %}><a href="/get-started/nodejs/run-containers/">Run your image as a container</a></li>
<li {% if include.selected=="3"%}class="active"{% endif %}><a href="/get-started/nodejs/develop/">Use containers for development</a></li>
</ul>