73a01565c Remove comment shortcode documentation 0ca7ccd30 Replace usage of comment shortcode with HTML comments fe10d9899 Remove expired new-in labels 11e89dfcb [editorial] Link to proper render-hook page in relref.md 11a581c2f netlify: Hugo 0.142.0 1a4fcf7f7 Miscellaneous edits 2c7a3165f Markdown linting and cleanup 69d7a781b Replace links to glossary terms with custom render hook syntax 441752d2d Refactor glossary lookup portion of link render hook 80109a14f Fix glossary term linking for plural form cd95f0f34 Update link render hook to support glossary links 53eadb430 Remove the glossary template 1d40a7f3b Improve transform.ToMath examples 586970df2 Misc edits 6a06a8de7 Add glossary link shortcode 4171c0eb7 Improve description of masking with non-transparent images 41c8feb64 Fix example of image.Mask filter 704a81656 Add alignx option to images.Text usage example 7c03eb0cc Clarify context in example of using the try statement 56d9c9b71 Refactor glossary of terms 042a6846b Add expiry dates to deprecated methods pages 365ab345f Remove services key from instagram shortcode page b7fe31e07 Reorder options list for images.Text filter 8051ff818 Format directory names, file names, and file paths as code d09a14623 Update version refs for Hugo and Dart Sass 3bb006974 Add NODE_VERSION to Netlify config examples 3a0f2531e Fix typo 7e3198eaf Fix typo cf56452a3 Fix typo a9f51d13e Fix typo 82bfdd8c3 Fix typo a5c41a053 Fix typo abcfed7a5 Fix typo 8c1debf3a Remove outdated new-in badges 809ddf9ef Update theme 63867d56f Use warnf instead of errorf in try-catch example dee3e5f09 Update theme 9791f7057 Remove TODO from comment shortcode examples a346ca1fd Elevate embedded shortcode documentation to its own section 8fa19b50f hugoreleaser.toml => hugoreleaser.yaml 575d60345 Update docs for v0.141.0 a0a442d62 netlify: Hugo 0.141.0 6667cbcd8 Merge commit '81a7b6390036138356773c87a886679c81c524e1' f36fc013e docs: Regen CLI docs 365a47ded tpl/images: Change signature of images.QR to images.QR TEXT OPTIONS ae8f8af0a images.Text: Add "alignx" option for horizontal alignment 8f45ccca6 docs: Regen CLI docs f0e6304f4 Merge commit 'e9fbadacc3f09191e2e19f112a49777eeb8df06c' cb9bec2b2 tpl/images: Add images.QR function git-subtree-dir: docs git-subtree-split: 73a01565c5ba0774d65aa6f2384c44804fefa37d
6.2 KiB
title | description | categories | keywords | menu | weight | toc | aliases | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Related content | List related content in "See Also" sections. |
|
|
|
110 | true |
|
Hugo uses a set of factors to identify a page's related content based on front matter parameters. This can be tuned to the desired set of indices and parameters or left to Hugo's default Related Content configuration.
List related content
To list up to 5 related pages (which share the same date or keyword parameters) is as simple as including something similar to this partial in your template:
{{< code file=layouts/partials/related.html >}} {{ $related := .Site.RegularPages.Related . | first 5 }} {{ with $related }}
See Also
-
{{ range . }}
- {{ .LinkTitle }} {{ end }}
The Related
method takes one argument which may be a Page
or a options map. The options map have these options:
- indices
- (
slice
) The indices to search within. - document
- (
page
) The page for which to find related content. Required when specifying an options map. - namedSlices
- (
slice
) The keywords to search for, expressed as a slice ofKeyValues
using thekeyVals
function. - fragments
- (
slice
) A list of special keywords that is used for indices configured as type "fragments". This will match the fragment identifiers of the documents.
A fictional example using all of the above options:
{{ $page := . }}
{{ $opts := dict
"indices" (slice "tags" "keywords")
"document" $page
"namedSlices" (slice (keyVals "tags" "hugo" "rocks") (keyVals "date" $page.Date))
"fragments" (slice "heading-1" "heading-2")
}}
{{% note %}}
We improved and simplified this feature in Hugo 0.111.0. Before this we had 3 different methods: Related
, RelatedTo
and RelatedIndices
. Now we have only one method: Related
. The old methods are still available but deprecated. Also see this blog article for a great explanation of more advanced usage of this feature.
{{% /note %}}
Index content headings in related content
Hugo can index the headings in your content and use this to find related content. You can enable this by adding a index of type fragments
to your related
configuration:
{{< code-toggle file=hugo >}} [related] threshold = 20 includeNewer = true toLower = false related.indices name = "fragmentrefs" type = "fragments" applyFilter = true weight = 80 {{< /code-toggle >}}
- The
name
maps to a optional front matter slice attribute that can be used to link from the page level down to the fragment/heading level. - If
applyFilter
is enabled, the.HeadingsFiltered
on each page in the result will reflect the filtered headings. This is useful if you want to show the headings in the related content listing:
{{ $related := .Site.RegularPages.Related . | first 5 }}
{{ with $related }}
<h2>See Also</h2>
<ul>
{{ range $i, $p := . }}
<li>
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
{{ with .HeadingsFiltered }}
<ul>
{{ range . }}
{{ $link := printf "%s#%s" $p.RelPermalink .ID | safeURL }}
<li>
<a href="{{ $link }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
{{ end }}
</li>
{{ end }}
</ul>
{{ end }}
Configure related content
Hugo provides a sensible default configuration of Related Content, but you can fine-tune this in your configuration, on the global or language level if needed.
Default configuration
Without any related
configuration set on the project, Hugo's Related Content methods will use the following.
{{< code-toggle config=related />}}
Custom configuration should be set using the same syntax.
{{% note %}}
If you add a related
configuration section, you need to add a complete configuration. It is not possible to just set, say, includeNewer
and use the rest from the Hugo defaults.
{{% /note %}}
Top level configuration options
- threshold
- (
int
) A value between 0-100. Lower value will give more, but maybe not so relevant, matches. - includeNewer
- (
bool
) Set totrue
to include pages newer than the current page in the related content listing. This will mean that the output for older posts may change as new related content gets added. - toLower
- (
bool
) Set totrue
to lower case keywords in both the indexes and the queries. This may give more accurate results at a slight performance penalty. Note that this can also be set per index.
Configuration options per index
- name
- (
string
) The index name. This value maps directly to a page parameter. Hugo supports string values (author
in the example) and lists (tags
,keywords
etc.) and time and date objects. - type
- (
string
) One ofbasic
(default) orfragments
. - applyFilter
- (
string
) Apply atype
specific filter to the result of a search. This is currently only used for thefragments
type. - weight
- (
int
) An integer weight that indicates how important this parameter is relative to the other parameters. It can be0
, which has the effect of turning this index off, or even negative. Test with different values to see what fits your content best. - cardinalityThreshold
- (
int
) If between 1 and 100, this is a percentage. All keywords that are used in more than this percentage of documents are removed. For example, setting this to60
will remove all keywords that are used in more than 60% of the documents in the index. If0
, no keyword is removed from the index. Default is0
. - pattern
- (
string
) This is currently only relevant for dates. When listing related content, we may want to list content that is also close in time. Setting "2006" (default value for date indexes) as the pattern for a date index will add weight to pages published in the same year. For busier blogs, "200601" (year and month) may be a better default. - toLower
- (
bool
) See above.