Fix deprecation warning

This commit is contained in:
Alex Selimov 2026-08-14 23:11:44 -04:00
parent aa632e3512
commit 1ef9f05f7d
3 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
<ul> <ul>
{{ range sort .Site.Data.presentations "date" }} {{ range sort hugo.Data.presentations "date" }}
<li><a href={{ .link }}>{{ .title }} ({{ .author }})</a></li> <li><a href={{ .link }}>{{ .title }} ({{ .author }})</a></li>
{{ end }} {{ end }}
</ul> </ul>

View file

@ -1,5 +1,5 @@
<ul> <ul>
{{ range .Site.Data.presentations }} {{ range hugo.Data.presentations }}
<li>{{ .authors }} ({{ .date }}) {{ .title }}. {{ .conference }} {{ with .link }} <li>{{ .authors }} ({{ .date }}) {{ .title }}. {{ .conference }} {{ with .link }}
<a href={{ . }}>[Link]</a>{{ end }}</li> <a href={{ . }}>[Link]</a>{{ end }}</li>
{{ end }} {{ end }}

View file

@ -1,5 +1,5 @@
<ul> <ul>
{{ range .Site.Data.publications }} {{ range hugo.Data.publications }}
<li>{{ .authors }} ({{ .year }}). {{ .title }}. <em>{{ .journal }}</em> {{ .volume }}, {{ .pages }} {{ with .link }} <a href={{ . }}>[Link]</a>{{ end }}</li> <li>{{ .authors }} ({{ .year }}). {{ .title }}. <em>{{ .journal }}</em> {{ .volume }}, {{ .pages }} {{ with .link }} <a href={{ . }}>[Link]</a>{{ end }}</li>
{{ end }} {{ end }}
</ul> </ul>