fix: fix link url error. (#10702)

If in page https://docs.docker.com/get-started/part2/ or https://docs.docker.com/get-started/part3/, the link url make an error.
This commit is contained in:
何锦余 2020-04-28 16:18:29 +08:00 committed by GitHub
parent 616a4b7c88
commit 9e5ed34328
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
<ul class="pagination">
<li {% if include.selected=="1"%}class="active"{% endif %}><a href="part1">Orientation and setup</a></li>
<li {% if include.selected=="2"%}class="active"{% endif %}><a href="part2">Build and run your image</a></li>
<li {% if include.selected=="3"%}class="active"{% endif %}><a href="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>