mirror of
https://github.com/docker/docs.git
synced 2026-03-29 15:28:51 +07:00
With the recent change in moving content to the /manuals section, and manipulating content permalinks to use `/:sections[1:]/:slugorfilename`, source filenames with dots in them did not receive a .html extension in the site output directory. This seems to be a quirk (bug?) with the `:slugorfilename` permalink token in Hugo. To work around this, I have removed the dots in markdown filenames and replaced them with dashes. Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
11 lines
388 B
HTML
11 lines
388 B
HTML
---
|
|
title: Latest (v{{< param latest_engine_api_version >}})
|
|
weight: 20
|
|
---
|
|
{{< redirect.inline >}}
|
|
<html>
|
|
<head><meta http-equiv="refresh" content="0;url=/reference/api/engine/version/v{{ strings.Replace (site.Param "latest_engine_api_version") "." "-" }}/" /></head>
|
|
<body><p>Redirecting to the latest version of the Docker Engine API reference.</body>
|
|
</html>
|
|
{{< /redirect.inline >}}
|