Welcome to mirror list, hosted at ThFree Co, Russian Federation.

prev-next-patient-head.html « partials « layouts - github.com/jmablog/hugo-clinic-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 99385375ba0468f243e4f606179e2f71f2ab8264 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

<div class="">
  
    <span class="truncate mr-2">
       {{with (where .Site.RegularPages "Params.patient" ($.Scratch.Get "patientFull")).Prev . }}
       <a href="{{ .RelPermalink }}" class="link">Prev</a>
       {{ end }}
    </span>
    
    
    <span class="truncate ml-2">
      {{with (where .Site.RegularPages "Params.patient" ($.Scratch.Get "patientFull")).Next . }}
      <a href="{{ .RelPermalink }}" class="link">Next </a>
      {{ end }}
    </span>
    
  </div>