21 lines
		
	
	
	
		
			757 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			757 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<h3>Backlinks</h3>
 | 
						|
<ul class="backlinks">
 | 
						|
    {{$url := urls.Parse .Site.BaseURL }}
 | 
						|
    {{$host := strings.TrimRight "/" $url.Path }}
 | 
						|
    {{$curPage := strings.TrimPrefix $host (strings.TrimRight "/" .Page.RelPermalink) }}
 | 
						|
    {{$linkIndex := getJSON "/static/linkIndex.json"}}
 | 
						|
    {{$inbound := index $linkIndex.index.backlinks $curPage}}
 | 
						|
    {{$contentTable := getJSON "/static/contentIndex.json"}}
 | 
						|
    {{if $inbound}}
 | 
						|
    {{$cleanedInbound := apply (apply $inbound "index" "." "source") "replace" "." " " "-"}}
 | 
						|
    {{- range $cleanedInbound | uniq -}}
 | 
						|
        <li>
 | 
						|
            <a href="{{$url}}{{.}}">{{index (index $contentTable .) "title"}}</a>
 | 
						|
        </li>
 | 
						|
    {{- end -}}
 | 
						|
    {{else}}
 | 
						|
    <li>
 | 
						|
        No backlinks found
 | 
						|
    </li>
 | 
						|
    {{end}}
 | 
						|
</ul>
 |