.URL has been deprecated in a recent version of Hugo
1 file changed, 1 insertion(+), 1 deletion(-)
jump to
M layouts/_default/list.html → layouts/_default/list.html
@@ -10,7 +10,7 @@ <ul> {{ range (where .Data.Pages "Section" "!=" "") }} <li> <span class="date">{{ .Date.Format "2006/01/02" }}</span> - <a href="{{ .URL }}">{{ .Title | markdownify }}</a> + <a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a> </li> {{ end }} </ul>