You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
289 B
HTML
9 lines
289 B
HTML
3 years ago
|
<ol class="backlinks">
|
||
|
{{$curPage := strings.TrimRight "/" .Page.RelPermalink }}
|
||
|
{{$inbound := index $.Site.Data.linkIndex.index.backlinks $curPage}}
|
||
|
{{- range $inbound -}}
|
||
|
<li>
|
||
|
<a href="{{index . "source"}}">{{index . "source"}}</a>
|
||
|
</li>
|
||
|
{{- end -}}
|
||
|
</ol>
|