Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The current list of publications is broken since the hugo update.
The reason for this is that in publikationen.html layout, we use
GroupByDate
.In the upgrade, we have renamed a lot of fields to
publishedDate
. In our config, we setinstructing hugo to first look at the filename when trying to find a date, and then use the default list. This list notably doesn't include any field called
publishedDate
, onlypublishDate
is listed.This led to the filters only taking into account the dates from the file names and no longer from the front matter. Since only three fields had valid dates, only those would be considered for the date filter.
This change hence renames all the dates field in the
publikationen
pages todate
again to be consistent with how hugo usually does things.