Titles of projects look ugly on homepage when words are too long.
Add HTML soft-hyphen to the title: Digitalization -> Digital­ization.
To enable correct rendering in the main page, the code for the header needs to be modified:
- Open
\themes\hugo-academic\layouts\partials\page_header.html - Look for
<div class="article-container pt-3"> - Modify
<h1>{{ $title }}</h1>to<h1>{{ $title | markdownify }}</h1> - Rebuild Site