This theme expects resources like images as local files. We need to place them in page bundles and register them in the front-matter.

Hugo allows us to handle resources in different ways and this theme supports the one which has a lot of support from Hugo out of the box, offers a lot of flexibility, and doesn’t rely on external services.

Hugo’s general options

There are three ways to store and retrieve resource files (like images):

Page specific
We can save them in the folder of a page bundle and access them with a short relative path. We then need to register the resources in the front-matter and add additional meta-data. This Hugo feature has one big advantage: Every content structure is self-sufficient and may be re-used in other sites simply by cloning its folder.
Site specific
We can save them in the assets folder and can use them for every page of our project. The favorite icon is an example for this theme.
Remote
Resources may also be retrieved via URL or API. The theme can generate Kroki diagrams via their API.

We can register every file in a page bundle only once. And then, we can’t reference it anymore under its original name.

Remote resources may slow down a build considerably when an external service is (temporarily) not available. Hugo always saves retrieved resources

Resources for this theme

The theme relies on page bundles to store page-specific resources.

resources:
  - src: original_image_filename.jpg
    name: image

A resource needs to be registered as usual by providing its source path and by adding a short name as an identifier label. We can add as many files we like to the list under the resources key. Its also possible to add arbitrary meta-data under an additional params key. This theme can process a bunch of them for the CommonMark image element.

Resources from other page bundles

Problem & Solution

There may be a downside to this approach depending on our specific content structure. In case we want to include a resource more than once, we need to store and register it repeatedly in different page bundles. To overcome this problem, this theme is also looking for resources in taxonomy and parent pages. This also allows to use already registered resources in simple pages, which aren’t bundles themselves.

Lookup Order

In case a resource is not found in a given page, the theme tries the next related page and so on in the following order:

  1. Page
  2. First tag of the page
  3. First category of the page
  4. Parent of the page
  5. Parents parent
  6. Next parent and so on …