Collecting my attempts to improve at tech, art, and life

Alias Templates in Hugo

Tags: hugo accessibility indieweb i-fixed-it hopefully site tools

attachments/img/2020/cover-2020-05-20.png
It’s not a redirect anymore

[!WARNING] Don’t do this This was an interesting experiment, but messed with results on search engine pages. Nothing but “This Page Has Moved!” as far as the eye can see after a few months.

Use regular Hugo alias frontmatter and leave it at that.

Yesterday I setting-up-raku-with-rakubrew I wrote about using rakubrew, a tool for managing installations of the Raku programming language. It’s an okay post. I liked my little shoutout to Jeff Goff. Those who knew him better shared better words.

Anyways — the post! People responded on Twitter and Mastodon. It was great.

Except none of those responses show up in the “IndieWeb Reactions” section of the post here on the site.

A problem

I know why — basically.

My post title and URL referenced Rakubrew’s predecessor “Rakudobrew,” which I considered an unacceptable faux pas. So I fixed it.

Hugo aliases: A solution to for my URL typo

This faux pas was easily corrected with Hugo Aliases. Move your content where it needs to be, and add an alias for the old link to content front matter.

Front matter for my Rakubrew post
title: Setting up Raku with Rakubrew
stub: setting-up-raku-with-rakubrew

aliases:
- /post/2020/05/setting-up-raku-with-rakudobrew/

With default configuration, Hugo generates an HTML redirect page for every alias.

HTML generated by Hugo for the alias
<!DOCTYPE html>
<html>
<head>
  <title>https://randomgeekery.org/post/2020/05/setting-up-raku-with-rakubrew/</title>
  <link rel="canonical" href="https://randomgeekery.org/post/2020/05/setting-up-raku-with-rakubrew/"/>
  <meta name="robots" content="noindex">
  <meta charset="utf-8" />
  <meta http-equiv="refresh" content="0; url=https://randomgeekery.org/post/2020/05/setting-up-raku-with-rakubrew/" />
  </head>
</html>

The visitor may briefly see a blank page. Browsers visiting the old URL see the http-equiv="refresh" element and immediately go to the new url. Normally, this is fine.

Now for today’s problem

Now my Webmention feed is busted. The syndication links all point to the old URL. Visitors get corrected, but Webmention senders don’t. Brid.gy — a lovely service which forwards social network reactions to your webmention handler — saw nothing to forward to!

Bridgy dashboard showing “No webmention support” in responses to my old URL

Well of course there’s no Webmention support. The generated alias files have no link rel="webmention"!

Took me a solid hour to figure that one out.

Use a custom alias template for my webmention problem

Oh thank goodness. Hugo supports custom alias templates.

What’s the least I can do to get things working?

layouts/alias.html
<!DOCTYPE html>
<html>
  <head>
    <title>{{ .Permalink }}</title>
    <link rel="canonical" href="{{ .Permalink }}">
    <link rel="webmention" href="https://webmention.io/randomgeekery.org/webmention"/>
    <link rel="pingback" href="https://webmention.io/randomgeekery.org/xmlrpc"/>
    <meta name="robots" content="noindex">
    <meta charset="utf-8" />
    <meta http-equiv="refresh" content="0; url={{ .Permalink }}" />
  </head>
</html>

NOTE

I was going to do a whole post on receiving webmentions, but that’s basically it right there. Sign up at Webmention.io and add the <link> to your pages.

Brid.gy now sees the webmention link at the old URL. I can manually resend the relevant mentions. All is well.

Almost. Now that I’m looking at my templates, I see problems.

This afternoon’s problem: accessibility

Non-essential page refreshes cause accessibility issues. Visitors may not have enough time to read the page before it redirects them. And what if the refresh doesn’t happen, either due to user preference or browser bug? The blank page offers no clue as to what they should expect.

So I go read the Web Content Accessibility Guidelines. Okay I skimmed it. We already know there’s plenty more I could be doing for accessibility. No need to get overwhelmed.

Oh heck — the WCAG figures client-side page refreshes should be treated as deprecated.

Until user agents provide the ability to stop auto-redirect, do not use markup to redirect pages automatically. Instead, configure the server to perform redirects.

I tried that, and it still caused confusion about webmentions. Services out there expect to interact with the link they have, and they don’t all understand redirect. I don’t have to like it, but I should acknowledge it.

They list specific tests for client-side page refreshes. I could compare what I have to the list.

For a page that uses meta http-equiv="refresh":

  1. Check that the numerical value for seconds until refresh in the content attribute is present.
  2. Check that the numerical value for seconds until refresh in the content attribute is less than one or greater than 72,000.
  3. Check if the page qualifies for Real-time or Essential Exceptions in Success Criterion 2.2.1 Timing Adjustable.
  4. Check if the user is provided an opportunity to turn off, extend, or adjust the timing of the page refresh.
  5. Check if the page does not refresh after the duration specified in the content attribute.

— WCAG21, Failure of Success Criterion 2.2.1, 2.2.4, and 3.2.5 due to using meta refresh to reload the page

“Ah,” I hear you say. “But your alias refreshes immediately. Besides, there’s no content to read!”

Right, I know. I’m talking about what they call an “edge case.” Most people are used to Web pages shifting and changing address underneath them. We’re used to doing it to them, anyways.

And the more I think about it, the more that empty page bugs me. We should tell folks if we’re sending them somewhere else. We should give them the option of not going.

Maybe just “this page moved” and a link instead of an automatic refresh. That works for now.

I have no problem with automatic redirect for non-entry content: sections, pagination, archives, tag listings, and so on. I made peace with my constant puttering on those a long time ago. redirect in .htaccess suffices for non-entry content. But actual posts and pages should stay constant or at the very least tell you where they went.

And this post adds a new rule that they need to tell you — not just the browser.

This is what I came up with, more or less.

layouts/alias.html
<!DOCTYPE html>
<html>
  <head>
    <title>{{ .Permalink }}</title>
    <link rel="canonical" href="{{ .Permalink }}">
    <link rel="webmention" href="https://webmention.io/randomgeekery.org/webmention"/>
    <link rel="pingback" href="https://webmention.io/randomgeekery.org/xmlrpc"/>
    <meta name="robots" content="noindex">
    <meta charset="utf-8" />
    {{ if .Page }}
      {{- $includeAnalytics := getenv "INCLUDE_ANALYTICS" -}} <!-- 1 -->
      {{- if eq $includeAnalytics "1" -}}
        <script async defer data-domain="randomgeekery.org"
                            src="https://plausible.io/js/plausible.js"></script>
      {{- end -}}
    {{ else }}
      <meta http-equiv="refresh" content="0; url={{ .Permalink }}" />
    {{ end }}
  </head>
  <body>
    {{ with .Page }}
      <h1>This Page Has Moved!</h1>
      <p>
        For some reason — Web address typos and site reorganization are <em>very</em>
        likely — {{ .Page.Title }} moved to <a href="{{ .Permalink }}">{{ .Permalink }}</a>.
      </p>
    {{ else }} <!-- 2 -->
      {{/* reenable to hunt down pagination links <!-- 3 -->
        {{ warnf "No page defined for %q" .Permalink }}
      */}}
      <p>
        Hugo generated this redirect to <a href="{{ .Permalink }}">{{ .Permalink }}</a>
        automatically during site generation. Please follow the link if your browser
        does not immediately redirect.
      </p>
    {{ end }}
</html>
  1. Analytics for aliased pages, because I want to know if folks are clicking on old links, but not for pagination aliases. Those are noise for me, not information.
  2. Today I learned that with supports else
  3. When this comment is removed, Hugo will warn me about aliases not associated with my content.

It works with some tweaking. Hugo pagination relies on aliases to setup page/1 redirects. Those pagination links aren’t associated with a Page, and an extra click with those would be annoying. But in the end I have a non-refreshing informational page at the old link for page aliases, and an auto-refreshing page with context for pagination aliases.

Build gets much noisier with that warnf in place.

$ make build
WARN 2020/05/20 12:27:20 No page defined for "https://randomgeekery.org/tags/yeah-i-know/"
WARN 2020/05/20 12:27:20 No page defined for "https://randomgeekery.org/tags/unless-thats-cool/"
WARN 2020/05/20 12:27:20 No page defined for "https://randomgeekery.org/tags/zentangle/"
WARN 2020/05/20 12:27:20 No page defined for "https://randomgeekery.org/tags/zombie/"

Kill pagination again.

Mind you, I have no idea what effect this will have on Search Engine Optimization. Then again, this would be a much different site if I cared about SEO.

The new redirect file
<!DOCTYPE html>
<html>
  <head>
    <title>https://randomgeekery.org/post/2020/05/setting-up-raku-with-rakubrew/</title>
    <link rel="canonical" href="https://randomgeekery.org/post/2020/05/setting-up-raku-with-rakubrew/">
    <link rel="webmention" href="https://webmention.io/randomgeekery.org/webmention"/>
    <link rel="pingback" href="https://webmention.io/randomgeekery.org/xmlrpc"/>
    <meta name="robots" content="noindex">
    <meta charset="utf-8" />
    <meta http-equiv="refresh" content="0; url=https://randomgeekery.org/post/2020/05/setting-up-raku-with-rakubrew/" />
  </head>
  <body>
    <h1>This Page Has Moved!</h1>
    <p>
      For one reason or another — Web address typos and site reorganization are
      <em>very</em> likely — "Setting up Raku with Rakubrew" moved to a new address.
    </p>
    <p>
      If your browser does not immediately send you to the new location,
      you can visit <a href="https://randomgeekery.org/post/2020/05/setting-up-raku-with-rakubrew/">https://randomgeekery.org/post/2020/05/setting-up-raku-with-rakubrew/</a> yourself.
  </body>
</html>

Now that I decided to go with an unchanging alias page, it needs to fit in stylistically with the rest of the site. You don’t need to worry about those details though.

All this because I wanted to see my Twitter likes on the page.


Got a comment? A question? More of a comment than a question?

Talk to me about this page on: mastodon

Added to vault 2024-01-15. Updated on 2024-02-01