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>
This commit is contained in:
Sebastiaan van Stijn 2020-10-13 11:02:28 +02:00
parent ac9a25c8e3
commit bec50329b9
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
3 changed files with 7 additions and 7 deletions

View File

@ -135,7 +135,7 @@
<a href="/network/">Manage container networking</a>
</div>
<div class="col-xs-12 col-md-6">
<a href="/compose/compose-file">Write a Docker Compose file</a>
<a href="/compose/compose-file/">Write a Docker Compose file</a>
</div>
<div class="col-xs-12 col-md-6">
<a href="/storage/">Work with volumes and bind mounts</a>

View File

@ -1,5 +1,5 @@
<ul class="pagination">
<li {% if include.selected=="1"%}class="active"{% endif %}><a href="/get-started/part1">Orientation and setup</a></li>
<li {% if include.selected=="2"%}class="active"{% endif %}><a href="/get-started/part2">Build and run your image</a></li>
<li {% if include.selected=="3"%}class="active"{% endif %}><a href="/get-started/part3">Share images on Docker Hub</a></li>
<li {% if include.selected=="1"%}class="active"{% endif %}><a href="/get-started/part1/">Orientation and setup</a></li>
<li {% if include.selected=="2"%}class="active"{% endif %}><a href="/get-started/part2/">Build and run your image</a></li>
<li {% if include.selected=="3"%}class="active"{% endif %}><a href="/get-started/part3/">Share images on Docker Hub</a></li>
</ul>

View File

@ -1,5 +1,5 @@
<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>
<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>