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

section.html « docs « layouts - github.com/jmablog/hugo-clinic-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a5562fae32fa34e74c0240b974b2e652dea2ed0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{{ define "main" }}

<div class="w-3/5 mx-auto pb-10">

<div class="mb-4 sticky bg-white pt-5 pb-5 top-0 border-b-2 print:hidden">
  {{ emojify ":file_folder:" }} 
  <a href="{{ .Site.BaseURL  }}" class="link">Notes</a>
  <span class=""> / </span>
  <span class="font-semibold">Documents</span>
</div>

<section id="main" class="mb-20 w-10/12 mx-auto">
    <div>
        
        <ul class="list-disc list-inside">
            {{ range .Pages }}
            <li class="my-2">
              <a href="{{ .Permalink }}" class="link">{{ .Title }}
              </a>
            </li>
            {{ end }}
        </ul>

    </div>
</section>

</div>
{{ end }}