10 lines
308 B
HTML
10 lines
308 B
HTML
{{ $link := .Get "link" }}
|
|
{{ $target := .Page }}
|
|
{{ if ne $link .Page.RelPermalink }}
|
|
{{ $target = index (first 1 (where .Site.AllPages "RelPermalink" $link)) 0 }}
|
|
{{ end }}
|
|
{{ if $target }}
|
|
<section class="space-y-10 w-full">
|
|
{{ partial "article-link/simple.html" $target }}
|
|
</section>
|
|
{{ end }}
|