mirror of https://github.com/docker/docs.git
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:
parent
ac9a25c8e3
commit
bec50329b9
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue