<metaname="description"content="5.14.0 (2023-05-20) New New The taxonomy pages received some love in this release, making them better leverage available screen space and adding translation support for the taxonomy names.">
<metaname="twitter:title"content="Version 5.14 :: Hugo Relearn Theme">
<metaname="twitter:description"content="5.14.0 (2023-05-20) New New The taxonomy pages received some love in this release, making them better leverage available screen space and adding translation support for the taxonomy names.">
<metaproperty="og:title"content="Version 5.14 :: Hugo Relearn Theme">
<metaproperty="og:description"content="5.14.0 (2023-05-20) New New The taxonomy pages received some love in this release, making them better leverage available screen space and adding translation support for the taxonomy names.">
<metaitemprop="name"content="Version 5.14 :: Hugo Relearn Theme">
<metaitemprop="description"content="5.14.0 (2023-05-20) New New The taxonomy pages received some love in this release, making them better leverage available screen space and adding translation support for the taxonomy names.">
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Change of behavior, may require action</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> New behavior, often introducing new options</p>
</li>
</ul>
<hr>
<h2id="5-14-0">5.14.0 (2023-05-20)</h2>
<h3id="new">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> The taxonomy pages received some love in this release, making them better leverage available screen space and adding translation support for the taxonomy names.</p>
<p>Hugo’s default taxonmies <code>tags</code> and <code>categories</code> are already contained in the theme’s i18n files. If you have self-defined taxonomies, you can add translations by adding them to your own i18n files. If you don’t provide translations, the singualar and plural forms are taken as configured in your <code>hugo.toml</code>.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> To give you more flexibility in customizing your article layout a new partial <code>content-header.html</code> is introduced.</p>
<p>This came out of the requirement to customize the position of article tags, which by default are displayed above the title. A second requirement was to also show additional <ahref="https://gohugo.io/content-management/taxonomies/"rel="external"target="_self">taxonomies</a> not supported by the theme natively. While Hugo supports tags and categories by default, the theme only displays tags.</p>
<p>So how to adjust the position of tags starting from the theme’s default where tags are only shown above the title?</p>
<ol>
<li>Hide tags above title: Overwrite <code>content-header.html</code> with an empty file.</li>
<li>Show tags between title and content: Overwrite <code>heading-post.html</code> and add <code>{{ partial "tags.html" . }}</code> to it.</li>
<li>Show tags below content: Overwrite <code>content-footer.html</code> and add <code>{{ partial "tags.html" . }}</code> to it.</li>
</ol>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> The new parameter <code>breadcrumbSeparator</code> is now available in your <code>hugo.toml</code> to change the - well - separator of the breadcrumb items. An appropriate default is in place if you do not configure anything.</p>