summaryrefslogtreecommitdiffstats
path: root/docs/content/en/showcase/letsencrypt/index.md
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2023-07-29 11:17:28 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2023-07-29 11:17:28 +0200
commit8859be1c01eac8b7423b9ff515c2d8c5c3d9d754 (patch)
tree5b503e5ef88c6569228f77936d5fb723c8a512b1 /docs/content/en/showcase/letsencrypt/index.md
parentbec9b80d95d1be8270bcda080037c588614f3be1 (diff)
parent87de22d7464e239c775fbd48ebce1665d5b1e80d (diff)
Diffstat (limited to 'docs/content/en/showcase/letsencrypt/index.md')
-rw-r--r--docs/content/en/showcase/letsencrypt/index.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/en/showcase/letsencrypt/index.md b/docs/content/en/showcase/letsencrypt/index.md
index fc57a26b8..d59908df0 100644
--- a/docs/content/en/showcase/letsencrypt/index.md
+++ b/docs/content/en/showcase/letsencrypt/index.md
@@ -1,5 +1,5 @@
---
-title: "Let’s Encrypt"
+title: Let’s Encrypt
date: 2018-03-13
description: "Showcase: Lessons learned from taking letsencrypt.org to Hugo."
siteURL: https://letsencrypt.org/
@@ -13,7 +13,7 @@ The **Let’s Encrypt website** has a common set of elements: A landing page and
I helped them port the site from Jekyll to Hugo. There are usually very few surprises doing this. I know Hugo very well, but working on sites with a history usually comes up with something new.
-That site is bookmarked in many browsers, so preserving the URLs was a must. Hugo's URL handling is very flexible, but there was one challenge. The website has a mix of standard and what we in Hugo call _ugly URLs_ (`https://letsencrypt.org/2017/12/07/looking-forward-to-2018.html`). In Hugo this is handled automatically, and you can turn it on globally or per language. But before Hugo `0.33` you could not configure it for parts of your site. You could set it manually for the relevant pages in front matter -- which is how it was done in Jekyll -- but that would be hard to manage, especially when you start to introduce translations. So, in [Hugo 0.33](https://gohugo.io/news/0.33-relnotes/) I added support for _ugly URLs_ per section and also `url` set in front matter for list pages (`https://letsencrypt.org/blog/`).
+That site is bookmarked in many browsers, so preserving the URLs was a must. Hugo's URL handling is very flexible, but there was one challenge. The website has a mix of standard and what we in Hugo call _ugly URLs_ (`https://letsencrypt.org/2017/12/07/looking-forward-to-2018.html`). In Hugo this is handled automatically, and you can turn it on globally or per language. But before Hugo `0.33` you could not configure it for parts of your site. You could set it manually for the relevant pages in front matter -- which is how it was done in Jekyll -- but that would be hard to manage, especially when you start to introduce translations. So, in [Hugo 0.33](/news/0.33-relnotes) I added support for _ugly URLs_ per section and also `url` set in front matter for list pages (`https://letsencrypt.org/blog/`).
The lessons learned from this also lead to [disableLanguages](/content-management/multilingual/#disable-a-language) in Hugo `0.34` (a way to turn off languages during translation). And I also registered [this issue](https://github.com/gohugoio/hugo/issues/4463). Once fixed it will make it easier to handle partially translated sites.