Fix deprecation warning
This commit is contained in:
parent
aa632e3512
commit
1ef9f05f7d
3 changed files with 3 additions and 3 deletions
|
|
@ -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>
|
||||||
|
|
|
||||||
|
|
@ -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 }}
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue