I added this to fix the title
// My Hugo setup requires title in YAML. This fixes that for journal entries.
// there may already be code that deals with that but I did not look for it
if (isset($properties['entry_title']) && !isset($properties['title'])) {
$properties['title'] = $properties['entry_title'];
}