This is an automated email from the ASF dual-hosted git repository. desruisseaux pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/sis-site.git
commit 44b03235543036d031d5fe386043ae9c521fb05d Author: Martin Desruisseaux <[email protected]> AuthorDate: Thu Jan 22 18:03:47 2026 +0100 Fix the link to the "How to" page, following changes in Hugo-generated layout. --- content/documentation.md | 2 +- content/faq.md | 2 +- layouts/_default/baseof.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/content/documentation.md b/content/documentation.md index da6f20f2..f75902bf 100644 --- a/content/documentation.md +++ b/content/documentation.md @@ -12,7 +12,7 @@ Supported features: For library users: -* [How to…](howto.html) +* [How to…](howto/index.html) * [Online Javadoc](apidocs/index.html) * [Developer guide](book/en/developer-guide.html) * [Recommended code patterns](code-patterns.html) diff --git a/content/faq.md b/content/faq.md index 86b3b676..034946c3 100644 --- a/content/faq.md +++ b/content/faq.md @@ -22,7 +22,7 @@ The most notable methods are: ### How do I transform a coordinate? {#transform-point} -See the ["How to…"](howto.html#referencing) page for Java code examples. +See the ["How to…"](howto/index.html#referencing) page for Java code examples. Those examples get Coordinate Reference Systems (CRS) instances in various ways and apply coordinate operations between two reference systems. diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 48887456..0e3a4a3b 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -40,7 +40,7 @@ <li><a class="nav-link {{ if eq .Page.RelPermalink "/" }} active {{ else }} inactive {{ end }}" href="/index.html">Home</a></li> <li><a class="nav-link {{ if eq .Page.RelPermalink "/about.html" }} active {{ else }} inactive {{ end }}" href="/about.html">About</a></li> <li><a class="nav-link {{ if eq .Page.RelPermalink "/downloads.html" }} active {{ else }} inactive {{ end }}" href="/downloads.html">Downloads</a></li> - <li><a class="nav-link {{ if strings.Contains .Page.RelPermalink "/howto" }} active {{ else }} inactive {{ end }}" href="/howto.html">How to…</a></li> + <li><a class="nav-link {{ if strings.Contains .Page.RelPermalink "/howto" }} active {{ else }} inactive {{ end }}" href="/howto/index.html">How to…</a></li> <li><a class="nav-link {{ if eq .Page.RelPermalink "/standards.html" }} active {{ else }} inactive {{ end }}" href="/standards.html">Standards</a></li> <li><a class="nav-link {{ if eq .Page.RelPermalink "/formats.html" }} active {{ else }} inactive {{ end }}" href="/formats.html">Data formats</a></li> <li><a class="nav-link {{ if eq .Page.RelPermalink "/epsg.html" }} active {{ else }} inactive {{ end }}" href="/epsg.html">EPSG Database</a></li>
