'Hugo command hugo server -D issue

Please someone help me i don't understand the problem here.I'm new to hugo and this error just keeps on appearing when I try to create markdown file.The error I'm getting



Solution 1:[1]

Without having a link to the source code of the theme you're using, it's hard to tell. However, I found giraffeacademy/ga-hugo-theme, which looks to be the same as what you're using (the line numbers seem to match).

It looks like the theme is outdated. It uses .URL in the list page template to try and link to the post that it's listing, but that isn't valid on the latest version of Hugo.

Changing {{.URL}} on line 14 in theme/ga-hugo-theme-master/layouts/_default/list.html to {{.Permalink}} should fix the issue.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 bbaovanc